summary refs log tree commit diff
path: root/src/test/ui/associated-const/associated-const-impl-wrong-lifetime.rs
blob: 08260ec8f4d6318a5b92403be35ecaa5c4f0f8e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
trait Foo {
    const NAME: &'static str;
}


impl<'a> Foo for &'a () {
    const NAME: &'a str = "unit";
    //~^ ERROR mismatched types [E0308]
}

fn main() {}