rust/tests/ui/sized/unsized-binding.rs
2025-06-18 10:20:43 +02:00

6 lines
73 B
Rust

fn main() {
let x = *""; //~ ERROR E0277
drop(x);
drop(x);
}