summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-36299.stderr
blob: dc24fb353f408069dfe673c7bc3d98f97c62b2ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
error[E0392]: parameter `'a` is never used
  --> $DIR/issue-36299.rs:1:12
   |
LL | struct Foo<'a, A> {}
   |            ^^ unused parameter
   |
   = help: consider removing `'a`, referring to it in a field, or using a marker such as `PhantomData`

error[E0392]: parameter `A` is never used
  --> $DIR/issue-36299.rs:1:16
   |
LL | struct Foo<'a, A> {}
   |                ^ unused parameter
   |
   = help: consider removing `A`, referring to it in a field, or using a marker such as `PhantomData`
   = help: if you intended `A` to be a const parameter, use `const A: usize` instead

error: aborting due to 2 previous errors

For more information about this error, try `rustc --explain E0392`.