rust/tests/ui/feature-gates/feature-gate-unsized_tuple_coercion.rs
2025-02-27 10:26:33 +00:00

4 lines
101 B
Rust

fn main() {
let _ : &(dyn Send,) = &((),);
//~^ ERROR 2:28: 2:34: mismatched types [E0308]
}