]> git.proxmox.com Git - rustc.git/blame - src/test/ui/issues/issue-60622.stderr
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / ui / issues / issue-60622.stderr
CommitLineData
48663c56
XL
1error: cannot specify lifetime arguments explicitly if late bound lifetime parameters are present
2 --> $DIR/issue-60622.rs:12:11
3 |
4LL | fn a(&self) {}
5 | - the late bound lifetime parameter is introduced here
6...
7LL | b.a::<'_, T>();
8 | ^^
9 |
74b04a01 10note: the lint level is defined here
48663c56
XL
11 --> $DIR/issue-60622.rs:3:9
12 |
13LL | #![deny(warnings)]
14 | ^^^^^^^^
416331ca 15 = note: `#[deny(late_bound_lifetime_arguments)]` implied by `#[deny(warnings)]`
48663c56
XL
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
19error[E0107]: wrong number of type arguments: expected 0, found 1
20 --> $DIR/issue-60622.rs:12:15
21 |
22LL | b.a::<'_, T>();
23 | ^ unexpected type argument
24
25error: aborting due to 2 previous errors
26
27For more information about this error, try `rustc --explain E0107`.