summary refs log tree commit diff
path: root/src/test/ui/proc-macro/lifetimes.rs
blob: d0dd1b4603b168b4409fe05738794eeb66c77bc1 (plain)
1
2
3
4
5
6
7
8
9
10
11
// aux-build:lifetimes.rs

#![feature(proc_macro_hygiene)]

extern crate lifetimes;

use lifetimes::*;

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

fn main() {}