Sign in
rust
/
rust-lang
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
ui
/
pattern
/
issue-74702.rs
blob: 0aeb3b217a26ff8771c9fb67a4943eaf9a1b4ea1 [
file
] [
log
] [
blame
]
fn
main
()
{
let
(
foo
@
..,)
=
(
0
,
0
);
//~^ ERROR: `foo @` is not allowed in a tuple
//~| ERROR: `..` patterns are not allowed here
//~| ERROR: mismatched types
dbg
!(
foo
);
}