mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
6 lines
105 B
Rust
6 lines
105 B
Rust
// pp-exact
|
|
|
|
fn f1<'a, 'b, 'c>(_x: &'a u32, _y: &'b u32, _z: &'c u32) where 'c: 'a + 'b {}
|
|
|
|
fn main() {}
|