Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
pattern
/
issue-74702.rs
blob: 0aeb3b217a26ff8771c9fb67a4943eaf9a1b4ea1 [
file
] [
log
] [
blame
] [
edit
]
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
);
}