rust/tests/ui/associated-consts/associated-const-impl-wrong-lifetime.rs

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

12 lines
169 B
Rust
Raw Normal View History

trait Foo {
const NAME: &'static str;
}
impl<'a> Foo for &'a () {
const NAME: &'a str = "unit";
//~^ ERROR const not compatible with trait
}
fn main() {}