aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax/tests/data/parser/inline/ok/0056_where_clause.rs
blob: 592a005f9eca991e6557809ca54511ad56355286 (plain)
1
2
3
4
5
6
fn foo()
where
   'a: 'b + 'c,
   T: Clone + Copy + 'static,
   Iterator::Item: 'a,
{}