rust/tests/pretty/lifetime.rs

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

6 lines
106 B
Rust
Raw Normal View History

//@ pp-exact
2016-06-29 07:53:01 -05:00
2021-12-01 13:45:14 -06:00
fn f1<'a, 'b, 'c>(_x: &'a u32, _y: &'b u32, _z: &'c u32) where 'c: 'a + 'b {}
2016-06-29 07:53:01 -05:00
2021-12-01 13:45:14 -06:00
fn main() {}