summary refs log tree commit diff
path: root/src/test/ui/issue-36299.stderr
blob: faa20253b9b476c3c9e3616aef62057b9c515b9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
error[E0392]: parameter `'a` is never used
  --> $DIR/issue-36299.rs:11:12
   |
LL | struct Foo<'a, A> {}
   |            ^^ unused type parameter
   |
   = help: consider removing `'a` or using a marker such as `std::marker::PhantomData`

error[E0392]: parameter `A` is never used
  --> $DIR/issue-36299.rs:11:16
   |
LL | struct Foo<'a, A> {}
   |                ^ unused type parameter
   |
   = help: consider removing `A` or using a marker such as `std::marker::PhantomData`

error: aborting due to 2 previous errors

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