]> git.proxmox.com Git - rustc.git/blob - src/test/ui/parser/bad-let-as-field.rs
New upstream version 1.66.0+dfsg1
[rustc.git] / src / test / ui / parser / bad-let-as-field.rs
1 struct Foo {
2 let: i32,
3 //~^ ERROR expected identifier, found keyword
4 }
5
6 fn main() {}