]> git.lizzy.rs Git - rust.git/blob - src/test/ui/lifetimes/nested.rs
Rollup merge of #105843 - compiler-errors:sugg-const, r=lcnr
[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() {}