]> git.lizzy.rs Git - rust.git/blob - src/test/ui/anon-params/anon-params-deprecated.stderr
Rollup merge of #105955 - Nilstrieb:no-trivial-opt-wrappers-we-have-field-accesses...
[rust.git] / src / test / ui / anon-params / anon-params-deprecated.stderr
1 warning: anonymous parameters are deprecated and will be removed in the next edition
2   --> $DIR/anon-params-deprecated.rs:9:12
3    |
4 LL |     fn foo(i32);
5    |            ^^^ help: try naming the parameter or explicitly ignoring it: `_: i32`
6    |
7    = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2018!
8    = note: for more information, see issue #41686 <https://github.com/rust-lang/rust/issues/41686>
9 note: the lint level is defined here
10   --> $DIR/anon-params-deprecated.rs:1:9
11    |
12 LL | #![warn(anonymous_parameters)]
13    |         ^^^^^^^^^^^^^^^^^^^^
14
15 warning: anonymous parameters are deprecated and will be removed in the next edition
16   --> $DIR/anon-params-deprecated.rs:12: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 is accepted in the current edition (Rust 2015) but is a hard error in Rust 2018!
22    = note: for more information, see issue #41686 <https://github.com/rust-lang/rust/issues/41686>
23
24 warning: anonymous parameters are deprecated and will be removed in the next edition
25   --> $DIR/anon-params-deprecated.rs:12: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 is accepted in the current edition (Rust 2015) but is a hard error in Rust 2018!
31    = note: for more information, see issue #41686 <https://github.com/rust-lang/rust/issues/41686>
32
33 warning: 3 warnings emitted
34