mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
12 lines
166 B
Rust
12 lines
166 B
Rust
// check-pass
|
|
// aux-build:underscore-imports.rs
|
|
|
|
extern crate underscore_imports;
|
|
|
|
use underscore_imports::*;
|
|
|
|
fn main() {
|
|
().in_scope1();
|
|
().in_scope2();
|
|
}
|