blob: 8782a37b35accc6156dfd98f2e4a04d0624f8187 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
error: expected identifier, found keyword `let`
--> $DIR/removed-syntax-field-let.rs:14:5
|
LL | let foo: (),
| ^^^ expected identifier, found keyword
error: expected `:`, found `foo`
--> $DIR/removed-syntax-field-let.rs:14:9
|
LL | let foo: (),
| ^^^ expected `:`
error: aborting due to 2 previous errors
|