summaryrefslogtreecommitdiffstats
path: root/src/test/ui/lifetimes/nested.rs
blob: f3f1f2016f23729e0abdb24f7b0e9237f897e630 (plain)
1
2
3
4
5
6
7
// check-pass

fn method<'a>(_i: &'a i32) {
    fn inner<'a>(_j: &'a f32) {}
}

fn main() {}