mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-27 18:57:42 +03:00
add one more test for type ascription of never
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
// Regression test for <https://github.com/rust-lang/rust/issues/149431>
|
||||
//
|
||||
// Checks that type ascription of a field place with type never is correctly
|
||||
// checked for if it constitutes a read of type never. (it doesn't)
|
||||
//
|
||||
//@ check-pass
|
||||
|
||||
#![feature(never_type)]
|
||||
#![feature(type_ascription)]
|
||||
#![deny(unreachable_code)]
|
||||
|
||||
fn main() {
|
||||
let x: (!,);
|
||||
let _ = type_ascribe!(x.0, _);
|
||||
|
||||
(); // reachable
|
||||
}
|
||||
Reference in New Issue
Block a user