Files
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
89 B
Rust
Raw Normal View History

fn main() {
2019-05-28 14:46:13 -04:00
let _ : &(dyn Send,) = &((),);
//~^ ERROR mismatched types [E0308]
}