mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 23:34:48 +00:00
16 lines
253 B
Rust
16 lines
253 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() {}
|