mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
16 lines
255 B
Rust
16 lines
255 B
Rust
//@ 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() {}
|