]> git.lizzy.rs Git - rust.git/blob - src/test/ui/error-codes/E0392.stderr
Rollup merge of #59118 - seanmonstar:alias-where-self-ice, r=alexreg
[rust.git] / src / test / ui / error-codes / E0392.stderr
1 error[E0392]: parameter `T` is never used
2   --> $DIR/E0392.rs:1:10
3    |
4 LL | enum Foo<T> { Bar }
5    |          ^ unused type parameter
6    |
7    = help: consider removing `T` or using a marker such as `std::marker::PhantomData`
8
9 error: aborting due to previous error
10
11 For more information about this error, try `rustc --explain E0392`.