]> git.proxmox.com Git - rustc.git/blob - src/test/ui/anon-params/anon-params-deprecated.stderr
New upstream version 1.44.1+dfsg1
[rustc.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 note: the lint level is defined here
8 --> $DIR/anon-params-deprecated.rs:1:9
9 |
10 LL | #![warn(anonymous_parameters)]
11 | ^^^^^^^^^^^^^^^^^^^^
12 = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in the 2018 edition!
13 = note: for more information, see issue #41686 <https://github.com/rust-lang/rust/issues/41686>
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 was previously accepted by the compiler but is being phased out; it will become a hard error in the 2018 edition!
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 was previously accepted by the compiler but is being phased out; it will become a hard error in the 2018 edition!
31 = note: for more information, see issue #41686 <https://github.com/rust-lang/rust/issues/41686>
32
33 warning: 3 warnings emitted
34