This commit is contained in:
Corey Richardson 2013-05-22 16:07:02 -04:00
parent 7ccc97e5b4
commit 5118d2f84a

View File

@ -0,0 +1,9 @@
macro_rules! e( //~ ERROR unknown macro variable `nonexistent`
($inp:ident) => (
$nonexistent
);
)
fn main() {
e!(foo);
}