about summary refs log tree commit diff
path: root/src/test/ui/parse-error-correct.rs
blob: f167b3595d92fe9d105a045b9999a9ad39bdfd9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// compile-flags: -Z continue-parse-after-error

// Test that the parser is error correcting missing idents. Despite a parsing
// error (or two), we still run type checking (and don't get extra errors there).

fn main() {
    let y = 42;
    let x = y.;  //~ ERROR unexpected token
    let x = y.();  //~ ERROR unexpected token
                   //~^ ERROR expected function, found `{integer}`
    let x = y.foo; //~ ERROR `{integer}` is a primitive type and therefore doesn't have fields [E061
}