blob: c5e4a72fb9ff18ed69a61ae52506d7fbf6d8500e [file] [log] [blame]
#![feature(impl_trait_in_bindings)]
#![allow(incomplete_features)]
fn main() {
const C: impl Copy = 0;
match C {
C | _ => {} //~ ERROR: opaque types cannot be used in patterns
}
}