mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 19:57:10 +00:00
11 lines
197 B
Rust
11 lines
197 B
Rust
const F: &'static dyn Send = &7u32;
|
|
|
|
fn main() {
|
|
let a: &dyn Send = &7u32;
|
|
match a {
|
|
F => panic!(),
|
|
//~^ ERROR `dyn Send` cannot be used in patterns
|
|
_ => {}
|
|
}
|
|
}
|