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