auto merge of #6686 : cmr/rust/fix-6596, r=catamorphism

The error message is extremely unideal.
This commit is contained in:
bors 2013-05-22 16:22:35 -07:00
commit f517ed0b08
2 changed files with 16 additions and 4 deletions

View file

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