rust/src/test/ui/issues/issue-25385.rs
2018-12-25 21:08:33 -07:00

13 lines
278 B
Rust

macro_rules! foo {
($e:expr) => { $e.foo() }
//~^ ERROR no method named `foo` found for type `i32` in the current scope
}
fn main() {
let a = 1i32;
foo!(a);
foo!(1i32.foo());
//~^ ERROR no method named `foo` found for type `i32` in the current scope
}