]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-36299.stderr
edbe790a0c9f6b42963bac76b093beddba241475
[rust.git] / src / test / ui / issues / issue-36299.stderr
1 error[E0392]: parameter `'a` is never used
2   --> $DIR/issue-36299.rs:1:12
3    |
4 LL | struct Foo<'a, A> {}
5    |            ^^ unused parameter
6    |
7    = help: consider removing `'a` or using a marker such as `std::marker::PhantomData`
8
9 error[E0392]: parameter `A` is never used
10   --> $DIR/issue-36299.rs:1:16
11    |
12 LL | struct Foo<'a, A> {}
13    |                ^ unused parameter
14    |
15    = help: consider removing `A` or using a marker such as `std::marker::PhantomData`
16
17 error: aborting due to 2 previous errors
18
19 For more information about this error, try `rustc --explain E0392`.