Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
consts
/
repeat_match.rs
blob: e297ce01a88260aac301bc20374da2901dc4c6fb [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
// https://github.com/rust-lang/rust/issues/45044
const
X
:
[
u8
;
1
]
=
[
0
;
1
];
fn
main
()
{
match
&
X
{
&
X
=>
println
!(
"a"
),
_
=>
println
!(
"b"
),
};
}