]> git.lizzy.rs Git - rust.git/blob - tests/pretty/lifetime.rs
Rollup merge of #106709 - khuey:disable_split_dwarf_inlining_by_default, r=davidtwco
[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() {}