rust/src/test/ui/pattern/usefulness/always-inhabited-union-ref.rs

33 lines
661 B
Rust
Raw Normal View History

2018-11-20 15:33:57 -06:00
// The precise semantics of inhabitedness with respect to unions and references is currently
// undecided. This test file currently checks a conservative choice.
2018-11-20 14:44:39 -06:00
#![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() {
2018-11-29 15:00:11 -06:00
//~^ ERROR non-exhaustive patterns: type `&'static !` is non-empty
2018-11-20 14:44:39 -06:00
}
match uninhab_union() {
2018-11-29 15:00:11 -06:00
//~^ ERROR non-exhaustive patterns: type `Foo` is non-empty
2018-11-20 14:44:39 -06:00
}
}
fn main() {}