about summary refs log tree commit diff
path: root/tests/ui/proc-macro/lifetimes.rs
blob: cfff3cb1785d6346905164f19ed1f81853f89daf (plain)
1
2
3
4
5
6
7
8
9
//@ proc-macro: lifetimes.rs

extern crate lifetimes;

use lifetimes::*;

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

fn main() {}