]> git.lizzy.rs Git - rust.git/blob - tests/ui/proc-macro/lifetimes.rs
Rollup merge of #106591 - Ezrashaw:attempted-integer-identifer, r=Estebank
[rust.git] / tests / ui / proc-macro / lifetimes.rs
1 // aux-build:lifetimes.rs
2
3 extern crate lifetimes;
4
5 use lifetimes::*;
6
7 type A = single_quote_alone!(); //~ ERROR expected type, found `'`
8
9 fn main() {}