1
1
warning: 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
3
3
|
4
4
LL | fn foo(i32); //~ WARNING anonymous parameters are deprecated
5
5
| ^^^ help: Try naming the parameter or explicitly ignoring it: `_: i32`
6
6
|
7
7
note: lint level defined here
8
- --> $DIR/anon-params-deprecated.rs:11 :9
8
+ --> $DIR/anon-params-deprecated.rs:1 :9
9
9
|
10
10
LL | #![warn(anonymous_parameters)]
11
11
| ^^^^^^^^^^^^^^^^^^^^
12
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
13
= note: for more information, see issue #41686 <https://github.com/rust-lang/rust/issues/41686>
14
14
15
15
warning: 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
17
17
|
18
18
LL | fn bar_with_default_impl(String, String) {}
19
19
| ^^^^^^ help: Try naming the parameter or explicitly ignoring it: `_: String`
@@ -22,7 +22,7 @@ LL | fn bar_with_default_impl(String, String) {}
22
22
= note: for more information, see issue #41686 <https://github.com/rust-lang/rust/issues/41686>
23
23
24
24
warning: 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
26
26
|
27
27
LL | fn bar_with_default_impl(String, String) {}
28
28
| ^^^^^^ help: Try naming the parameter or explicitly ignoring it: `_: String`
0 commit comments