]> git.proxmox.com Git - rustc.git/blob - src/test/ui/structs/struct-fields-shorthand-unresolved.rs
Update unsuspicious file list
[rustc.git] / src / test / ui / structs / struct-fields-shorthand-unresolved.rs
1 struct Foo {
2 x: i32,
3 y: i32
4 }
5
6 fn main() {
7 let x = 0;
8 let foo = Foo {
9 x,
10 y //~ ERROR cannot find value `y` in this scope
11 };
12 }