blob: 83bbf884a4ff8da4a617e80022ad1bc4df62af65 [file] [log] [blame]
macro_rules! foo {
($rest: tt) => {
bar(baz: $rest)
}
}
fn main() {
foo!(true); //~ ERROR expected type, found keyword
//~^ ERROR expected identifier, found keyword
}