]> git.proxmox.com Git - rustc.git/blame - src/test/ui/issues/issue-36299.stderr
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / ui / issues / issue-36299.stderr
CommitLineData
8faf50e0 1error[E0392]: parameter `'a` is never used
0731742a 2 --> $DIR/issue-36299.rs:1:12
8faf50e0
XL
3 |
4LL | struct Foo<'a, A> {}
48663c56 5 | ^^ unused parameter
8faf50e0 6 |
1b1a35ee 7 = help: consider removing `'a`, referring to it in a field, or using a marker such as `PhantomData`
8faf50e0
XL
8
9error[E0392]: parameter `A` is never used
0731742a 10 --> $DIR/issue-36299.rs:1:16
8faf50e0
XL
11 |
12LL | struct Foo<'a, A> {}
48663c56 13 | ^ unused parameter
8faf50e0 14 |
1b1a35ee 15 = help: consider removing `A`, referring to it in a field, or using a marker such as `PhantomData`
8faf50e0
XL
16
17error: aborting due to 2 previous errors
18
19For more information about this error, try `rustc --explain E0392`.