rust/src/test/compile-fail/issue-3096-2.rs
2012-08-15 14:57:45 -07:00

7 lines
123 B
Rust

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