os-rust/src/test/ui/feature-gates/feature-gate-unsized_tuple_coercion.rs

5 lines
104 B
Rust
Raw Normal View History

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