blob: 23b7f0f41c3559fe89f7ce84fd0b2130f64ba207 [file] [log] [blame] [edit]
//@ check-pass
trait Foo<'a> {
const C: &'a u32;
}
impl<'a, T> Foo<'a> for T {
const C: &'a u32 = &22;
}
fn foo() {
let a = 22;
match &a {
<() as Foo<'static>>::C => { }
&_ => { }
}
}
fn main() {}