mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 21:47:04 +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,
|
|
}
|