rust/src/test/compile-fail/issue-3096-2.rs

7 lines
123 B
Rust
Raw Normal View History

enum bottom { }
fn main() {
let x = ptr::addr_of(()) as *bottom;
match x { } //~ ERROR non-exhaustive patterns
}