]> git.lizzy.rs Git - rust.git/blob - src/test/ui/error-codes/E0062.rs
Merge commit 'cd4810de42c57b64b74dae09c530a4c3a41f87b9' into libgccjit-codegen
[rust.git] / src / test / ui / error-codes / E0062.rs
1 struct Foo {
2     x: i32
3 }
4
5 fn main() {
6     let x = Foo {
7         x: 0,
8         x: 0,
9         //~^ ERROR E0062
10     };
11 }