]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-60622.stderr
Auto merge of #83152 - guswynn:jemallocator_part2, r=Mark-Simulacrum
[rust.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 type arguments but 1 type argument was supplied
20   --> $DIR/issue-60622.rs:10:7
21    |
22 LL |     b.a::<'_, T>();
23    |       ^     --- help: remove this type argument
24    |       |
25    |       expected 0 type arguments
26    |
27 note: associated function defined here, with 0 type 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`.