rust/tests/ui/match/issue-70972-dyn-trait.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
198 B
Rust
Raw Normal View History

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
_ => {}
}
}