summaryrefslogtreecommitdiffstats
path: root/src/test/ui/feature-gates/feature-gate-unsized_tuple_coercion.rs
blob: c3d62a231e5e4f21441017e67a146cef181bf47c (plain)
1
2
3
4
fn main() {
    let _ : &(dyn Send,) = &((),);
    //~^ ERROR unsized tuple coercion is not stable enough
}