about summary refs log tree commit diff
path: root/tests/ui/proc-macro/lifetimes.rs
blob: 0c5d3e2f72fa514a54428f253e2e822ccacc79a9 (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() {}