mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 17:25:45 +00:00
12 lines
281 B
Rust
12 lines
281 B
Rust
fn is_sized<T:Sized>() { }
|
|
fn not_sized<T: ?Sized>() { }
|
|
|
|
enum Foo<U> { FooSome(U), FooNone }
|
|
fn foo1<T>() { not_sized::<Foo<T>>() } // Hunky dory.
|
|
fn foo2<T: ?Sized>() { not_sized::<Foo<T>>() }
|
|
//~^ ERROR the size for values of type
|
|
//
|
|
// Not OK: `T` is not sized.
|
|
|
|
fn main() { }
|