]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-41974.stderr
Rollup merge of #100861 - RalfJung:const-ice, r=oli-obk
[rust.git] / src / test / ui / issues / issue-41974.stderr
1 error[E0210]: type parameter `T` must be used as the type parameter for some local type (e.g., `MyStruct<T>`)
2   --> $DIR/issue-41974.rs:7:6
3    |
4 LL | impl<T> Drop for T where T: A {
5    |      ^ type parameter `T` must be used as the type parameter for some local type
6    |
7    = note: implementing a foreign trait is only possible if at least one of the types for which it is implemented is local
8    = note: only traits defined in the current crate can be implemented for a type parameter
9
10 error[E0120]: the `Drop` trait may only be implemented for local structs, enums, and unions
11   --> $DIR/issue-41974.rs:7:18
12    |
13 LL | impl<T> Drop for T where T: A {
14    |                  ^ must be a struct, enum, or union in the current crate
15
16 error: aborting due to 2 previous errors
17
18 Some errors have detailed explanations: E0120, E0210.
19 For more information about an error, try `rustc --explain E0120`.