blob: a2735d4cbfb2928c1e32eb3bb4a81d73e1411b3a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
#![crate_type = "rlib"]
#![feature(never_type)]
#[non_exhaustive]
pub enum UninhabitedEnum {
}
#[non_exhaustive]
pub struct UninhabitedStruct {
_priv: !,
}
#[non_exhaustive]
pub struct UninhabitedTupleStruct(!);
pub enum UninhabitedVariants {
#[non_exhaustive] Tuple(!),
#[non_exhaustive] Struct { x: ! }
}
pub enum PartiallyInhabitedVariants {
Tuple(u8),
#[non_exhaustive] Struct { x: ! }
}
pub struct IndirectUninhabitedEnum(UninhabitedEnum);
pub struct IndirectUninhabitedStruct(UninhabitedStruct);
pub struct IndirectUninhabitedTupleStruct(UninhabitedTupleStruct);
pub struct IndirectUninhabitedVariants(UninhabitedVariants);
|