mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
9 lines
147 B
Rust
9 lines
147 B
Rust
// aux-build:import_crate_var.rs
|
|
|
|
#[macro_use] extern crate import_crate_var;
|
|
|
|
fn main() {
|
|
m!();
|
|
//~^ ERROR `$crate` may not be imported
|
|
}
|