]> git.proxmox.com Git - rustc.git/blame - src/test/pretty/lifetime.rs
New upstream version 1.59.0+dfsg1
[rustc.git] / src / test / pretty / lifetime.rs
CommitLineData
3157f602 1// pp-exact
a7813a04 2
a2a8927a 3fn f1<'a, 'b, 'c>(_x: &'a u32, _y: &'b u32, _z: &'c u32) where 'c: 'a + 'b {}
3157f602 4
a2a8927a 5fn main() {}