mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-28 20:16:58 +03:00
Add test
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
macro_rules! e( //~ ERROR unknown macro variable `nonexistent`
|
||||
($inp:ident) => (
|
||||
$nonexistent
|
||||
);
|
||||
)
|
||||
|
||||
fn main() {
|
||||
e!(foo);
|
||||
}
|
||||
Reference in New Issue
Block a user