Sign in
fuchsia
/
third_party
/
rust
/
5a2fceefd312ec027bdeaa89ebefbe4c33d94de1
/
.
/
tests
/
ui
/
box
/
unit
/
unique-match-discrim.rs
blob: c1b7b15c7c41de018ee2c24b640cd1518c71cdec [
file
]
//@ run-pass
#![
allow
(
dead_code
)]
// Issue #961
fn
altsimple
()
{
match
Box
::
new
(
true
)
{
_
=>
{
}
}
}
pub
fn
main
()
{
}