blob: 604413c4b6d19cb0d7ca63552ad374d1804de475 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
error[E0367]: `Drop` impl requires `T: Sized` but the struct it is implemented for does not
--> $DIR/issue-17959.rs:11:6
|
LL | impl<T> Drop for G<T> {
| ^
|
note: the implementor must specify the same requirement
--> $DIR/issue-17959.rs:7:1
|
LL | struct G<T: ?Sized> {
| ^^^^^^^^^^^^^^^^^^^
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0367`.
|