rust/src/test/compile-fail/issue-6596.rs

10 lines
143 B
Rust
Raw Normal View History

2013-05-22 16:07:02 -04:00
macro_rules! e( //~ ERROR unknown macro variable `nonexistent`
($inp:ident) => (
$nonexistent
);
)
fn main() {
e!(foo);
}