Files
rust/tests/ui/issues/issue-5883.rs
2025-02-03 19:00:22 +00:00

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