mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 07:44:10 +00:00
22 lines
748 B
Rust
22 lines
748 B
Rust
#![feature(never_type)]
|
|
#![deny(uninhabited_static)]
|
|
|
|
enum Void {}
|
|
extern {
|
|
static VOID: Void; //~ ERROR static of uninhabited type
|
|
//~| WARN: previously accepted
|
|
static NEVER: !; //~ ERROR static of uninhabited type
|
|
//~| WARN: previously accepted
|
|
}
|
|
|
|
static VOID2: Void = unsafe { std::mem::transmute(()) }; //~ ERROR static of uninhabited type
|
|
//~| WARN: previously accepted
|
|
//~| ERROR could not evaluate static initializer
|
|
//~| WARN: type `Void` does not permit zero-initialization
|
|
static NEVER2: Void = unsafe { std::mem::transmute(()) }; //~ ERROR static of uninhabited type
|
|
//~| WARN: previously accepted
|
|
//~| ERROR could not evaluate static initializer
|
|
//~| WARN: type `Void` does not permit zero-initialization
|
|
|
|
fn main() {}
|