mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-28 09:51:43 +00:00
5 lines
111 B
Rust
5 lines
111 B
Rust
fn bar<T: Sized>() { }
|
|
fn foo<T: ?Sized>() { bar::<T>() }
|
|
//~^ ERROR the size for values of type
|
|
fn main() { }
|