]> git.proxmox.com Git - rustc.git/blame - tests/ui/resolve/issue-5035-2.rs
New upstream version 1.74.1+dfsg1
[rustc.git] / tests / ui / resolve / issue-5035-2.rs
CommitLineData
9346a6ac 1trait I {}
dc9dc135 2type K = dyn I + 'static;
223e47cc 3
8faf50e0
XL
4fn foo(_x: K) {}
5//~^ ERROR the size for values of type
223e47cc
LB
6
7fn main() {}