We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
macro_rules! foo (() => ( 2 => "two" )) fn main() { match 2 { foo!(), _ => "not two", } }
$ rustc -v rustc 0.10-pre (6ae5de0 2014-02-19 12:51:48 -0800) host: x86_64-unknown-linux-gnu $ rustc foo.rs foo.rs:7:12: 7:13 error: expected `=>` but found `!` foo.rs:7 foo!(), ^