mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
9 lines
203 B
Rust
9 lines
203 B
Rust
const F: &'static dyn PartialEq<u32> = &7u32;
|
|
|
|
fn main() {
|
|
let a: &dyn PartialEq<u32> = &7u32;
|
|
match a {
|
|
F => panic!(), //~ ERROR: `dyn PartialEq<u32>` cannot be used in patterns
|
|
}
|
|
}
|