rust/tests/ui/lifetimes/nested.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
93 B
Rust
Raw Normal View History

2022-02-10 02:42:32 +00:00
// check-pass
fn method<'a>(_i: &'a i32) {
fn inner<'a>(_j: &'a f32) {}
}
fn main() {}