summaryrefslogtreecommitdiffstats
path: root/src/test/ui/regions/regions-creating-enums5.rs
blob: ad3d9748bf0a6192b6b4db7258c18a543b3f0e85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// 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<'a>(x: &'a ast<'a>, y: &'a ast<'a>, _z: &ast) -> ast<'a> {
    ast::add(x, y)
}

pub fn main() {
}