mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
20 lines
236 B
Rust
20 lines
236 B
Rust
// 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() {}
|