]> git.lizzy.rs Git - rust.git/blob - tests/pretty/lifetime.rs
Rollup merge of #106692 - eggyal:mv-binary_heap.rs-binary_heap/mod.rs, r=Mark-Simulacrum
[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() {}