Files
rust/tests/ui/pattern/usefulness/always-inhabited-union-ref.rs

34 lines
726 B
Rust
Raw Normal View History

2024-07-27 11:08:16 +02:00
//@ revisions: normal exhaustive_patterns
2018-11-20 21:33:57 +00:00
// The precise semantics of inhabitedness with respect to unions and references is currently
// undecided. This test file currently checks a conservative choice.
#![cfg_attr(exhaustive_patterns, feature(exhaustive_patterns))]
2018-11-20 20:44:39 +00:00
#![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 `&!` is non-empty
2018-11-20 20:44:39 +00:00
}
match uninhab_union() {
2018-11-29 21:00:11 +00:00
//~^ ERROR non-exhaustive patterns: type `Foo` is non-empty
2018-11-20 20:44:39 +00:00
}
}
fn main() {}