blob: 31463992aca04abefae467c563197ab7ff06ed1d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// compile-flags: -Z parse-only
// issue #41834
fn main() {
let foo = Foo {
one: 111,
..Foo::default(),
//~^ ERROR cannot use a comma after the base struct
};
let foo = Foo {
..Foo::default(),
//~^ ERROR cannot use a comma after the base struct
one: 111,
};
}
|