]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/parse-error-correct.rs
Point (again) to more expressions with their type, even if not fully resolved
[rust.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 }