Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
match
/
issue-112438.rs
blob: b2febe292105418709b1adaa9df597c8c3e7a297 [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
#![
feature
(
inline_const_pat
)]
#![
allow
(
dead_code
)]
fn
foo
<
const
V
:
usize
>()
{
match
0
{
const
{
1
<<
5
}
|
_
=>
{}
}
}
fn
main
()
{}