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
94 B
Rust
Raw Normal View History

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