rust/tests/ui/issues/issue-5883.rs

14 lines
218 B
Rust

trait A {}
struct Struct {
r: dyn A + 'static
}
fn new_struct(
r: dyn A + 'static //~ ERROR the size for values of type
) -> Struct { //~ ERROR the size for values of type
Struct { r: r }
}
fn main() {}