mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
22 lines
281 B
Rust
22 lines
281 B
Rust
extern crate core;
|
|
|
|
use core::ops::Drop;
|
|
|
|
trait Bar {}
|
|
|
|
struct G<T: ?Sized> {
|
|
_ptr: *const T
|
|
}
|
|
|
|
impl<T> Drop for G<T> {
|
|
//~^ ERROR `Drop` impl requires `T: Sized`
|
|
fn drop(&mut self) {
|
|
if !self._ptr.is_null() {
|
|
}
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
let x:G<dyn Bar>;
|
|
}
|