Sign in
rust
/
rust
/
08650fbb506c44fbc95d91abfb7cd95a56bbff30
/
.
/
src
/
test
/
ui
/
error-codes
/
E0530.rs
blob: 5bc40964f647b58364db05cb93a6dd83613d539d [
file
]
fn
main
()
{
static
TEST
:
i32
=
0
;
let
r
:
(
i32
,
i32
)
=
(
0
,
0
);
match
r
{
TEST
=>
{}
//~ ERROR E0530
}
}