]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-41974.stderr
Various minor/cosmetic improvements to code
[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:17:1
3    |
4 LL | impl<T> Drop for T where T: A { //~ ERROR E0119
5    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
6    |
7    = note: conflicting implementation in crate `alloc`:
8            - impl<T> std::ops::Drop for std::boxed::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 on structures
13   --> $DIR/issue-41974.rs:17:18
14    |
15 LL | impl<T> Drop for T where T: A { //~ ERROR E0119
16    |                  ^ implementing Drop requires a struct
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:17:1
20    |
21 LL | impl<T> Drop for T where T: A { //~ ERROR E0119
22    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ type parameter `T` must be used as the type parameter for some local type
23    |
24    = note: only traits defined in the current crate can be implemented for a type parameter
25
26 error: aborting due to 3 previous errors
27
28 Some errors occurred: E0119, E0120, E0210.
29 For more information about an error, try `rustc --explain E0119`.