rust/tests/pretty/lifetime.rs

6 lines
105 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() {}