Sign in
android
/
toolchain
/
rustc
/
2f3fdfeb95384b9046ea35b3532e23c652eca660
/
.
/
src
/
test
/
ui
/
drop
/
drop-on-empty-block-exit.rs
blob: 1747bf029aa334672d86863ea962e0cf845b9991 [
file
] [
log
] [
blame
]
// run-pass
// pretty-expanded FIXME #23616
#![
allow
(
non_camel_case_types
)]
#![
feature
(
box_syntax
)]
enum
t
{
foo
(
Box
<
isize
>),
}
pub
fn
main
()
{
let
tt
=
t
::
foo
(
box
10
);
match
tt
{
t
::
foo
(
_z
)
=>
{
}
}
}