]> git.proxmox.com Git - rustc.git/blob - src/test/ui/parser/parse-error-correct.rs
New upstream version 1.51.0+dfsg1
[rustc.git] / src / test / ui / parser / parse-error-correct.rs
1 // Test that the parser is error correcting missing idents. Despite a parsing
2 // error (or two), we still run type checking (and don't get extra errors there).
3
4 fn main() {
5 let y = 42;
6 let x = y.; //~ ERROR unexpected token
7 let x = y.(); //~ ERROR unexpected token
8 //~^ ERROR expected function, found `{integer}`
9 let x = y.foo; //~ ERROR `{integer}` is a primitive type and therefore doesn't have fields [E061
10 }