Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
box
/
unit
/
unique-match-discrim.rs
blob: 97b502004f514b350bee08fe82c8799ce7ff36e9 [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
#![
allow
(
dead_code
)]
// Issue #961
//@ pretty-expanded FIXME #23616
fn
altsimple
()
{
match
Box
::
new
(
true
)
{
_
=>
{
}
}
}
pub
fn
main
()
{
}