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

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