rust/tests/ui/issues/issue-43205.rs

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

6 lines
82 B
Rust
Raw Normal View History

// run-pass
fn main() {
let _ = &&[()][0];
println!("{:?}", &[(),()][1]);
}