rust/src/test/compile-fail/issue-3096-2.rs
2012-10-04 16:48:57 -07:00

7 lines
124 B
Rust

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