mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
17 lines
271 B
Rust
17 lines
271 B
Rust
//@ run-pass
|
|
#![allow(dead_code)]
|
|
#![allow(non_camel_case_types)]
|
|
|
|
//@ pretty-expanded FIXME #23616
|
|
|
|
enum ast<'a> {
|
|
num(usize),
|
|
add(&'a ast<'a>, &'a ast<'a>)
|
|
}
|
|
|
|
fn mk_add_ok<'r>(x: &'r ast<'r>, y: &'r ast<'r>) -> ast<'r> {
|
|
ast::add(x, y)
|
|
}
|
|
|
|
pub fn main() {
|
|
}
|