Sign in
fuchsia
/
third_party
/
rust
/
0.4
/
.
/
src
/
test
/
run-fail
/
expr-alt-fail.rs
blob: a7f19c6d3ce57b7f13f612d174d4c46a1370f34e [
file
] [
log
] [
blame
]
// error-pattern:explicit failure
fn
main
()
{
let
x
=
match
true
{
false
=>
{
0
}
true
=>
{
fail
}
};
}