rust/src/test/ui/parser/inverted-parameters.stderr

48 lines
1.5 KiB
Plaintext
Raw Normal View History

error: expected one of `:` or `@`, found `bar`
--> $DIR/inverted-parameters.rs:4:24
|
LL | fn foo(&self, &str bar) {}
| -----^^^
| | |
| | expected one of `:` or `@` here
| help: declare the type after the parameter binding: `<identifier>: <type>`
error: expected one of `:` or `@`, found `quux`
--> $DIR/inverted-parameters.rs:10:10
|
LL | fn baz(S quux, xyzzy: i32) {}
| --^^^^
| | |
| | expected one of `:` or `@` here
| help: declare the type after the parameter binding: `<identifier>: <type>`
error: expected one of `:` or `@`, found `a`
--> $DIR/inverted-parameters.rs:15:12
|
LL | fn one(i32 a b) {}
| ^ expected one of `:` or `@` here
error: expected `:`, found `(`
--> $DIR/inverted-parameters.rs:18:23
|
LL | fn pattern((i32, i32) (a, b)) {}
| ^ expected `:`
error: expected one of `:` or `@`, found `)`
--> $DIR/inverted-parameters.rs:21:12
|
LL | fn fizz(i32) {}
| ^ expected one of `:` or `@` here
error: expected one of `:` or `@`, found `S`
--> $DIR/inverted-parameters.rs:24:23
|
LL | fn missing_colon(quux S) {}
| -----^
| | |
| | expected one of `:` or `@` here
| help: declare the type after the parameter binding: `<identifier>: <type>`
error: aborting due to 6 previous errors