mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
33 lines
903 B
Rust
33 lines
903 B
Rust
#![allow(incomplete_features)]
|
|
#![feature(unnamed_fields)]
|
|
|
|
struct F {
|
|
field1: union { field2: u8 }, //~ ERROR anonymous unions are not allowed outside of unnamed struct or union fields
|
|
_: union { field3: u8 },
|
|
}
|
|
|
|
struct G {
|
|
_: (u8, u8), //~ ERROR unnamed fields can only have struct or union types
|
|
}
|
|
|
|
union H {
|
|
field1: union { field2: u8 }, //~ ERROR anonymous unions are not allowed outside of unnamed struct or union fields
|
|
_: union { field3: u8 },
|
|
}
|
|
|
|
union I {
|
|
_: (u8, u8), //~ ERROR unnamed fields can only have struct or union types
|
|
}
|
|
|
|
enum K {
|
|
M {
|
|
_ : union { field: u8 }, //~ ERROR anonymous unions are not allowed outside of unnamed struct or union fields
|
|
//~^ ERROR unnamed fields are not allowed outside of structs or unions
|
|
},
|
|
N {
|
|
_ : u8, //~ ERROR unnamed fields are not allowed outside of structs or unions
|
|
}
|
|
}
|
|
|
|
fn main() {}
|