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