mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 19:57:10 +00:00
6 lines
106 B
Rust
6 lines
106 B
Rust
//@ pp-exact
|
|
|
|
fn f1<'a, 'b, 'c>(_x: &'a u32, _y: &'b u32, _z: &'c u32) where 'c: 'a + 'b {}
|
|
|
|
fn main() {}
|