rust/src/test/pretty/lifetime.rs
2021-12-01 13:50:13 -08:00

5 lines
105 B
Rust

// pp-exact
fn f1<'a, 'b, 'c>(_x: &'a u32, _y: &'b u32, _z: &'c u32) where 'c: 'a + 'b {}
fn main() {}