rust/src/test/ui/issues/issue-17904-2.stderr

12 lines
391 B
Plaintext
Raw Normal View History

2018-07-15 21:11:54 +00:00
error[E0392]: parameter `T` is never used
2018-12-25 15:56:47 +00:00
--> $DIR/issue-17904-2.rs:4:12
2018-07-15 21:11:54 +00:00
|
LL | struct Foo<T> where T: Copy; //~ ERROR parameter `T` is never used
| ^ unused type parameter
|
= help: consider removing `T` or using a marker such as `std::marker::PhantomData`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0392`.