about summary refs log tree commit diff
path: root/tests/ui/underscore-imports/intercrate.rs
blob: 04de2bcc79ae6c93925505b1d2f85e2db955075d (plain)
1
2
3
4
5
6
7
8
9
10
11
//@ check-pass
//@ aux-build:underscore-imports.rs

extern crate underscore_imports;

use underscore_imports::*;

fn main() {
    ().in_scope1();
    ().in_scope2();
}