summaryrefslogtreecommitdiffstats
path: root/src/test/ui/proc-macro/lifetimes.rs
blob: 5605696715e34223efd00528a90d061e0ad7aad6 (plain)
1
2
3
4
5
6
7
8
9
// aux-build:lifetimes.rs

extern crate lifetimes;

use lifetimes::*;

type A = single_quote_alone!(); //~ ERROR expected type, found `'`

fn main() {}