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 18:46:13 +00:00
let _ : &(dyn Send,) = &((),);
2018-06-26 02:29:13 +00:00
//~^ ERROR unsized tuple coercion is not stable enough
}