Move /src/test to /tests
This commit is contained in:
parent
ca855e6e42
commit
cf2dff2b1e
27592 changed files with 0 additions and 0 deletions
|
@ -0,0 +1,35 @@
|
|||
// 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() {}
|
Loading…
Add table
Add a link
Reference in a new issue