rust/src/test/pretty/lifetime.rs

6 lines
107 B
Rust
Raw Normal View History

2016-06-29 21:53:01 +09:00
// pp-exact
fn f1<'a, 'b, 'c>(_x: &'a u32, _y: &'b u32, _z: &'c u32) where 'c: 'a + 'b { }
fn main() { }