Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
regions
/
regions-nullary-variant.rs
blob: 8fe0a97c61c8fe946872ef1e0bb4e4fc9790269f [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
#![
allow
(
dead_code
)]
#![
allow
(
non_camel_case_types
)]
//@ pretty-expanded FIXME #23616
enum
roption
<
'
a
>
{
a
,
b
(&
'
a usize
)
}
fn
mk
(
cond
:
bool
,
ptr
:
&
usize
)
->
roption
{
if
cond
{
roption
::
a
}
else
{
roption
::
b
(
ptr
)}
}
pub
fn
main
()
{}