blob: bddc8c80a7b96f637d97170f07dc8d3427a3e11f [file] [log] [blame]
macro_rules! identity {
($i: ident) => (
$i
)
}
fn main() {
let identity!(_) = 10; //~ ERROR no rules expected the token `_`
}