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

7 lines
124 B
Rust
Raw Normal View History

enum bottom { }
fn main() {
2012-10-03 16:38:01 -05:00
let x = ptr::addr_of(&()) as *bottom;
match x { } //~ ERROR non-exhaustive patterns
}