rust/tests/ui/proc-macro/lifetimes.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
153 B
Rust
Raw Normal View History

//@ aux-build:lifetimes.rs
extern crate lifetimes;
use lifetimes::*;
type A = single_quote_alone!(); //~ ERROR expected type, found `'`
fn main() {}