Sign in
android
/
toolchain
/
rustc
/
977026a81a6cc1c304420586c1bb6527b72b4303
/
.
/
src
/
test
/
ui
/
inline-const
/
expr-with-block.rs
blob: 391872476fccdfff56c333e2638ab4037dbecff3 [
file
] [
log
] [
blame
]
// check-pass
#![
feature
(
inline_const
)]
fn
main
()
{
match
true
{
true
=>
const
{}
false
=>
()
}
const
{}
()
}