rust/src/test/ui/proc-macro/lints_in_proc_macros.rs

17 lines
338 B
Rust
Raw Normal View History

// aux-build:bang_proc_macro2.rs
#![feature(proc_macro_hygiene)]
#![allow(unused_macros)]
extern crate bang_proc_macro2;
use bang_proc_macro2::bang_proc_macro2;
fn main() {
let foobar = 42;
bang_proc_macro2!();
//~^ ERROR cannot find value `foobar2` in this scope
//~^^ did you mean `foobar`?
println!("{}", x);
}