rust/tests/ui/coercion/coerce-box-new-to-unboxed.rs
2025-09-16 04:22:50 -04:00

5 lines
91 B
Rust

fn main() {
let _: String = Box::new(String::new());
//~^ ERROR mismatched types
}