summaryrefslogtreecommitdiffstats
path: root/src/test/ui/resolve/issue-5035-2.rs
blob: b831bb4be34877410470f8f062f8d94a9288c673 (plain)
1
2
3
4
5
6
7
trait I {}
type K = dyn I + 'static;

fn foo(_x: K) {}
//~^ ERROR the size for values of type

fn main() {}