Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-6117.rs
blob: 4fa99d955c93550424ba4bc000e155a83f8551d8 [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
#![
allow
(
dead_code
)]
//@ pretty-expanded FIXME #23616
enum
Either
<
T
,
U
>
{
Left
(
T
),
Right
(
U
)
}
pub
fn
main
()
{
match
Either
::
Left
(
Box
::
new
(
17
))
{
Either
::
Right
(())
=>
{}
_
=>
{}
}
}