Sign in
android
/
toolchain
/
rustc
/
bcf972c0208490b0eb3ce3c170c2db486ba945b3
/
.
/
src
/
test
/
mir-opt
/
simplify_match.rs
blob: 216203f9ff08d03595d716e90347f15b8151434d [
file
] [
log
] [
blame
]
#[
inline
(
never
)]
fn
noop
()
{}
// EMIT_MIR simplify_match.main.ConstProp.diff
fn
main
()
{
match
{
let
x
=
false
;
x
}
{
true
=>
noop
(),
false
=>
{},
}
}