11warning: anonymous parameters are deprecated and will be removed in the next edition.
2- --> $DIR/anon-params-deprecated.rs:19 :12
2+ --> $DIR/anon-params-deprecated.rs:9 :12
33 |
44LL | fn foo(i32); //~ WARNING anonymous parameters are deprecated
55 | ^^^ help: Try naming the parameter or explicitly ignoring it: `_: i32`
66 |
77note: lint level defined here
8- --> $DIR/anon-params-deprecated.rs:11 :9
8+ --> $DIR/anon-params-deprecated.rs:1 :9
99 |
1010LL | #![warn(anonymous_parameters)]
1111 | ^^^^^^^^^^^^^^^^^^^^
1212 = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
1313 = note: for more information, see issue #41686 <https://github.com/rust-lang/rust/issues/41686>
1414
1515warning: anonymous parameters are deprecated and will be removed in the next edition.
16- --> $DIR/anon-params-deprecated.rs:22 :30
16+ --> $DIR/anon-params-deprecated.rs:12 :30
1717 |
1818LL | fn bar_with_default_impl(String, String) {}
1919 | ^^^^^^ help: Try naming the parameter or explicitly ignoring it: `_: String`
@@ -22,7 +22,7 @@ LL | fn bar_with_default_impl(String, String) {}
2222 = note: for more information, see issue #41686 <https://github.com/rust-lang/rust/issues/41686>
2323
2424warning: anonymous parameters are deprecated and will be removed in the next edition.
25- --> $DIR/anon-params-deprecated.rs:22 :38
25+ --> $DIR/anon-params-deprecated.rs:12 :38
2626 |
2727LL | fn bar_with_default_impl(String, String) {}
2828 | ^^^^^^ help: Try naming the parameter or explicitly ignoring it: `_: String`
0 commit comments