summaryrefslogtreecommitdiffstats
path: root/src/test/ui/underscore-imports/intercrate.rs
blob: 144f95bace1c0876d839efda3ac8d75e71aa18ec (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();
}