]> git.lizzy.rs Git - rust.git/blob - src/test/ui/rfc-2565-param-attrs/param-attrs-2018.stderr
Auto merge of #62339 - pnkfelix:issue-61188-use-visitor-for-structural-match-check...
[rust.git] / src / test / ui / rfc-2565-param-attrs / param-attrs-2018.stderr
1 error: expected one of `:` or `@`, found `)`
2   --> $DIR/param-attrs-2018.rs:5:41
3    |
4 LL | trait Trait2015 { fn foo(#[allow(C)] i32); }
5    |                                         ^ expected one of `:` or `@` here
6    |
7    = note: anonymous parameters are removed in the 2018 edition (see RFC 1685)
8 help: if this was a parameter name, give it a type
9    |
10 LL | trait Trait2015 { fn foo(#[allow(C)] i32: TypeName); }
11    |                                      ^^^^^^^^^^^^^
12 help: if this is a type, explicitly ignore the parameter name
13    |
14 LL | trait Trait2015 { fn foo(#[allow(C)] _: i32); }
15    |                                      ^^^^^^
16
17 error: aborting due to previous error
18