about summary refs log tree commit diff
path: root/tests/ui/feature-gates/feature-gate-unsized_tuple_coercion.rs
blob: c1469863792755583cfbd86f540c4d2d9564d7a1 (plain)
1
2
3
4
fn main() {
    let _ : &(dyn Send,) = &((),);
    //~^ ERROR mismatched types [E0308]
}