rust/tests/ui/issues/issue-5883.rs
2023-01-11 09:32:08 +00:00

14 lines
227 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() {}