mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
36 lines
1.1 KiB
Rust
36 lines
1.1 KiB
Rust
|
// run-rustfix
|
||
|
#![allow(dead_code)]
|
||
|
|
||
|
enum E {
|
||
|
A,
|
||
|
}
|
||
|
|
||
|
struct S {
|
||
|
field1: i32, //~ ERROR default values on `struct` fields aren't supported
|
||
|
field2: E, //~ ERROR default values on `struct` fields aren't supported
|
||
|
field3: i32, //~ ERROR default values on `struct` fields aren't supported
|
||
|
field4: i32, //~ ERROR default values on `struct` fields aren't supported
|
||
|
field5: E, //~ ERROR default values on `struct` fields aren't supported
|
||
|
field6: E, //~ ERROR default values on `struct` fields aren't supported
|
||
|
}
|
||
|
|
||
|
struct S1 {
|
||
|
field1: i32, //~ ERROR expected `,`, or `}`, found `field2`
|
||
|
field2: E, //~ ERROR expected `,`, or `}`, found `field3`
|
||
|
field3: i32, //~ ERROR default values on `struct` fields aren't supported
|
||
|
field4: i32, //~ ERROR default values on `struct` fields aren't supported
|
||
|
field5: E, //~ ERROR default values on `struct` fields aren't supported
|
||
|
field6: E, //~ ERROR default values on `struct` fields aren't supported
|
||
|
}
|
||
|
|
||
|
struct S2 {
|
||
|
field1 : i32, //~ ERROR expected `:`, found `=`
|
||
|
field2: E, //~ ERROR expected `:`, found `;`
|
||
|
}
|
||
|
|
||
|
const fn foo(_: i32) -> E {
|
||
|
E::A
|
||
|
}
|
||
|
|
||
|
fn main() {}
|