rust/src/test/ui/imports/import-crate-var.rs
2019-06-16 12:23:22 +03:00

11 lines
241 B
Rust

// check-pass
// aux-build:import_crate_var.rs
#[macro_use] extern crate import_crate_var;
fn main() {
m!();
//~^ WARN `$crate` may not be imported
//~| NOTE `use $crate;` was erroneously allowed and will become a hard error
}