Files
rust/src/test/compile-fail/struct-fields-dupe.rs

10 lines
160 B
Rust
Raw Normal View History

struct BuildData {
foo: int,
}
fn main() {
let foo = BuildData {
foo: 0,
foo: 0 //~ ERROR field `foo` specified more than once
};
}