mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 14:07:10 +00:00
9 lines
148 B
Rust
9 lines
148 B
Rust
//@ aux-build:import_crate_var.rs
|
|
|
|
#[macro_use] extern crate import_crate_var;
|
|
|
|
fn main() {
|
|
m!();
|
|
//~^ ERROR `$crate` may not be imported
|
|
}
|