mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-25 14:13:38 +00:00
11 lines
212 B
Rust
11 lines
212 B
Rust
#![crate_type = "rlib"]
|
|
pub enum EmptyForeignEnum {}
|
|
|
|
pub struct VisiblyUninhabitedForeignStruct {
|
|
pub field: EmptyForeignEnum,
|
|
}
|
|
|
|
pub struct SecretlyUninhabitedForeignStruct {
|
|
_priv: EmptyForeignEnum,
|
|
}
|