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