rust/tests/ui/feature-gates/feature-gate-unsized_tuple_coercion.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

5 lines
108 B
Rust
Raw Normal View History

fn main() {
2019-05-28 13:46:13 -05:00
let _ : &(dyn Send,) = &((),);
2018-06-25 21:29:13 -05:00
//~^ ERROR unsized tuple coercion is not stable enough
}