Sign in
rust
/
rust
/
0883b8cc7926859cd296afde42c5b2d7aaae5ce5
/
.
/
tests
/
ui
/
error-codes
/
E0416.rs
blob: 88eece07acddc242a39ddb5f951a8d7602229bca [
file
]
fn
main
()
{
match
(
1
,
2
)
{
(
x
,
x
)
=>
{}
//~ ERROR E0416
}
}