1 macro_rules! identity {
2     ($i: ident) => (
3         $i
4     )
5 }
6 
main()7 fn main() {
8     let identity!(_) = 10; //~ ERROR no rules expected the token `_`
9 }
10