summaryrefslogtreecommitdiffstats
path: root/tests/pretty/lifetime.rs
blob: 34eae849be45eab5f215752a5884023699a23ae5 (plain)
1
2
3
4
5
// pp-exact

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

fn main() {}