]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-41974.stderr
Rollup merge of #78043 - willcrozi:e0210-error-note-fix, r=lcnr
[rust.git] / src / test / ui / issues / issue-41974.stderr
1 error[E0119]: conflicting implementations of trait `std::ops::Drop` for type `std::boxed::Box<_>`:
2   --> $DIR/issue-41974.rs:7:1
3    |
4 LL | impl<T> Drop for T where T: A {
5    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
6    |
7    = note: conflicting implementation in crate `alloc`:
8            - impl<T> Drop for Box<T>
9              where T: ?Sized;
10    = note: downstream crates may implement trait `A` for type `std::boxed::Box<_>`
11
12 error[E0120]: the `Drop` trait may only be implemented for structs, enums, and unions
13   --> $DIR/issue-41974.rs:7:18
14    |
15 LL | impl<T> Drop for T where T: A {
16    |                  ^ must be a struct, enum, or union
17
18 error[E0210]: type parameter `T` must be used as the type parameter for some local type (e.g., `MyStruct<T>`)
19   --> $DIR/issue-41974.rs:7:6
20    |
21 LL | impl<T> Drop for T where T: A {
22    |      ^ type parameter `T` must be used as the type parameter for some local type
23    |
24    = note: implementing a foreign trait is only possible if at least one of the types for which it is implemented is local
25    = note: only traits defined in the current crate can be implemented for a type parameter
26
27 error: aborting due to 3 previous errors
28
29 Some errors have detailed explanations: E0119, E0120, E0210.
30 For more information about an error, try `rustc --explain E0119`.