30 lines
494 B
Rust
30 lines
494 B
Rust
|
#![feature(exhaustive_patterns)]
|
||
|
#![feature(never_type)]
|
||
|
|
||
|
#![allow(dead_code)]
|
||
|
#![allow(unreachable_code)]
|
||
|
|
||
|
pub union Foo {
|
||
|
foo: !,
|
||
|
}
|
||
|
|
||
|
fn uninhab_ref() -> &'static ! {
|
||
|
unimplemented!()
|
||
|
}
|
||
|
|
||
|
fn uninhab_union() -> Foo {
|
||
|
unimplemented!()
|
||
|
}
|
||
|
|
||
|
fn match_on_uninhab() {
|
||
|
match uninhab_ref() {
|
||
|
//~^ ERROR non-exhaustive patterns: type &'static ! is non-empty
|
||
|
}
|
||
|
|
||
|
match uninhab_union() {
|
||
|
//~^ ERROR non-exhaustive patterns: type Foo is non-empty
|
||
|
}
|
||
|
}
|
||
|
|
||
|
fn main() {}
|