8 lines
102 B
Rust
8 lines
102 B
Rust
trait I {}
|
|
type K = I+'static;
|
|
|
|
fn foo(_x: K) {}
|
|
//~^ ERROR the size for values of type
|
|
|
|
fn main() {}
|