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

fn main() {
2019-05-28 14:46:13 -04:00
let _ : &(dyn Send,) = &((),);
2025-02-27 08:21:47 +00:00
//~^ ERROR 2:28: 2:34: mismatched types [E0308]
}