]> git.lizzy.rs Git - rust.git/blob - src/test/ui/lifetimes/nested.rs
Merge commit 'f2cdd4a78d89c009342197cf5844a21f8aa813df' into sync_cg_clif-2022-04-22
[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() {}