]> git.lizzy.rs Git - rust.git/blob - src/test/ui/anon-params-deprecated.stderr
Rollup merge of #53317 - estebank:abolish-ice, r=oli-obk
[rust.git] / src / test / ui / anon-params-deprecated.stderr
1 error: anonymous parameters are deprecated and will be removed in the next edition.
2   --> $DIR/anon-params-deprecated.rs:15:12
3    |
4 LL |     fn foo(i32); //~ ERROR anonymous parameters are deprecated
5    |            ^^^ help: Try naming the parameter or explicitly ignoring it: `_: i32`
6    |
7 note: lint level defined here
8   --> $DIR/anon-params-deprecated.rs:11:11
9    |
10 LL | #![forbid(anonymous_parameters)]
11    |           ^^^^^^^^^^^^^^^^^^^^
12    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
13    = note: for more information, see issue #41686 <https://github.com/rust-lang/rust/issues/41686>
14
15 error: anonymous parameters are deprecated and will be removed in the next edition.
16   --> $DIR/anon-params-deprecated.rs:18:30
17    |
18 LL |     fn bar_with_default_impl(String, String) {}
19    |                              ^^^^^^ help: Try naming the parameter or explicitly ignoring it: `_: String`
20    |
21    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
22    = note: for more information, see issue #41686 <https://github.com/rust-lang/rust/issues/41686>
23
24 error: anonymous parameters are deprecated and will be removed in the next edition.
25   --> $DIR/anon-params-deprecated.rs:18:38
26    |
27 LL |     fn bar_with_default_impl(String, String) {}
28    |                                      ^^^^^^ help: Try naming the parameter or explicitly ignoring it: `_: String`
29    |
30    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
31    = note: for more information, see issue #41686 <https://github.com/rust-lang/rust/issues/41686>
32
33 error: aborting due to 3 previous errors
34