Sign in
android
/
toolchain
/
rustc
/
cd1aefd586783f162dd848e314bd6991a5ffe033
/
.
/
tests
/
mir-opt
/
simplify_match.rs
blob: 6a2a6f2171967b2355513e60880654da41481761 [
file
] [
log
] [
blame
]
// ignore-wasm32 compiled with panic=abort by default
#[
inline
(
never
)]
fn
noop
()
{}
// EMIT_MIR simplify_match.main.ConstProp.diff
fn
main
()
{
match
{
let
x
=
false
;
x
}
{
true
=>
noop
(),
false
=>
{},
}
}