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