mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
20 lines
347 B
Rust
20 lines
347 B
Rust
use std::mem::ManuallyDrop;
|
|
|
|
union Foo<T: ?Sized> {
|
|
value: ManuallyDrop<T>,
|
|
//~^ ERROR the size for values of type
|
|
}
|
|
|
|
struct Foo2<T: ?Sized> {
|
|
value: ManuallyDrop<T>,
|
|
//~^ ERROR the size for values of type
|
|
t: u32,
|
|
}
|
|
|
|
enum Foo3<T: ?Sized> {
|
|
Value(ManuallyDrop<T>),
|
|
//~^ ERROR the size for values of type
|
|
}
|
|
|
|
fn main() {}
|