]> git.lizzy.rs Git - rust.git/blob - src/test/ui/proc-macro/lifetimes.rs
Rollup merge of #80543 - LeSeulArtichaut:notify-close, r=spastorino
[rust.git] / src / test / 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() {}