]> git.lizzy.rs Git - rust.git/blob - src/test/ui/feature-gates/feature-gate-non_exhaustive.rs
MetadataOnlyCodegenBackend: remove `is_inline` call
[rust.git] / src / test / ui / feature-gates / feature-gate-non_exhaustive.rs
1 //#![feature(non_exhaustive)]
2
3 #[non_exhaustive] //~ERROR non exhaustive is an experimental feature (see issue #44109)
4 pub enum NonExhaustiveEnum {
5     Unit,
6     Tuple(u32),
7     Struct { field: u32 }
8 }
9
10 fn main() { }