]> git.proxmox.com Git - rustc.git/blob - tests/ui/unsized/unsized-bare-typaram.rs
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / ui / unsized / unsized-bare-typaram.rs
1 fn bar<T: Sized>() { }
2 fn foo<T: ?Sized>() { bar::<T>() }
3 //~^ ERROR the size for values of type
4 fn main() { }