blob: c61b69175c8802e24952f294f9df96d98cfe4fb0 [file] [log] [blame] [edit]
// Disallow `'keyword` even in cfg'd code.
#[cfg(false)]
fn hello() -> &'ref () {}
//~^ ERROR lifetimes cannot use keyword names
macro_rules! macro_invocation {
($i:item) => {}
}
macro_invocation! {
fn hello() -> &'ref () {}
//~^ ERROR lifetimes cannot use keyword names
}
fn main() {}