]> git.proxmox.com Git - rustc.git/blob - src/test/ui/issues/issue-60622.stderr
New upstream version 1.54.0+dfsg1
[rustc.git] / src / test / ui / issues / issue-60622.stderr
1 error: cannot specify lifetime arguments explicitly if late bound lifetime parameters are present
2 --> $DIR/issue-60622.rs:10:11
3 |
4 LL | fn a(&self) {}
5 | - the late bound lifetime parameter is introduced here
6 ...
7 LL | b.a::<'_, T>();
8 | ^^
9 |
10 note: the lint level is defined here
11 --> $DIR/issue-60622.rs:1:9
12 |
13 LL | #![deny(warnings)]
14 | ^^^^^^^^
15 = note: `#[deny(late_bound_lifetime_arguments)]` implied by `#[deny(warnings)]`
16 = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
17 = note: for more information, see issue #42868 <https://github.com/rust-lang/rust/issues/42868>
18
19 error[E0107]: this associated function takes 0 generic arguments but 1 generic argument was supplied
20 --> $DIR/issue-60622.rs:10:7
21 |
22 LL | b.a::<'_, T>();
23 | ^ - help: remove this generic argument
24 | |
25 | expected 0 generic arguments
26 |
27 note: associated function defined here, with 0 generic parameters
28 --> $DIR/issue-60622.rs:6:8
29 |
30 LL | fn a(&self) {}
31 | ^
32
33 error: aborting due to 2 previous errors
34
35 For more information about this error, try `rustc --explain E0107`.