]> git.lizzy.rs Git - rust.git/blob - src/test/ui/proc-macro/lifetimes.rs
Merge commit 'a98e7ab8b94485be6bd03e0c6b8682ecab5b52e6' into clippyup
[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() {}