about summary refs log tree commit diff
path: root/tests/ui/lexer/prefixed-lifetime.rs
blob: 6191b97d57697facdea7c5860d6a5a6644d14c15 (plain)
1
2
3
4
5
6
7
8
9
10
//@ edition: 2021

macro_rules! w {
    ($($tt:tt)*) => {};
}

w!('foo#lifetime);
//~^ ERROR prefix `'foo` is unknown

fn main() {}