1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
#![deny(elided_lifetimes_in_associated_constant)]
use std::marker::PhantomData;
struct Foo<'a> {
x: PhantomData<&'a ()>,
}
impl<'a> Foo<'a> {
const FOO: Foo<'_> = Foo { x: PhantomData::<&()> };
//~^ ERROR `'_` cannot be used here
//~| WARN this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
const BAR: &() = &();
//~^ ERROR `&` without an explicit lifetime name cannot be used here
//~| WARN this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
}
fn main() {}
|