]> git.lizzy.rs Git - rust.git/blob - tests/pretty/lifetime.rs
Rollup merge of #107819 - clubby789:x-py-root, r=jyn514
[rust.git] / tests / pretty / lifetime.rs
1 // pp-exact
2
3 fn f1<'a, 'b, 'c>(_x: &'a u32, _y: &'b u32, _z: &'c u32) where 'c: 'a + 'b {}
4
5 fn main() {}