]> git.lizzy.rs Git - rust.git/blob - src/test/ui/lifetimes/nested.rs
Rollup merge of #94467 - ibraheemdev:master, r=pnkfelix
[rust.git] / src / test / ui / lifetimes / nested.rs
1 // check-pass
2
3 fn method<'a>(_i: &'a i32) {
4     fn inner<'a>(_j: &'a f32) {}
5 }
6
7 fn main() {}