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