rustc/tests/ui/resolve/issue-5035-2.rs
2023-08-02 10:33:26 +02:00

8 lines
108 B
Rust

trait I {}
type K = dyn I + 'static;
fn foo(_x: K) {}
//~^ ERROR the size for values of type
fn main() {}