rust/tests/ui/error-codes/E0062.rs

12 lines
119 B
Rust
Raw Normal View History

2016-05-20 13:18:30 +00:00
struct Foo {
x: i32
}
fn main() {
let x = Foo {
x: 0,
2016-05-20 13:18:30 +00:00
x: 0,
2016-08-04 20:52:16 +00:00
//~^ ERROR E0062
2016-05-20 13:18:30 +00:00
};
}