Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
consts
/
deref_in_pattern.rs
blob: cc47b5b49c0b3d54c50f48cc5a134cd85e45dc51 [
file
] [
log
] [
blame
]
// run-pass
// https://github.com/rust-lang/rust/issues/25574
const
A
:
[
u8
;
4
]
=
*
b
"fooo"
;
fn
main
()
{
match
*
b
"xxxx"
{
A
=>
{},
_
=>
{}
}
}