mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-28 13:51:41 +00:00
7 lines
128 B
Rust
7 lines
128 B
Rust
enum Bottom { }
|
|
|
|
fn main() {
|
|
let x = &() as *const () as *const Bottom;
|
|
match x { } //~ ERROR non-exhaustive patterns
|
|
}
|