summary refs log tree commit diff
path: root/src/test/pretty/where-clauses.rs
blob: 3d6e431a11a9afae97be44dee12fc259286bb190 (plain)
1
2
3
4
5
// pp-exact

fn f<'a, 'b, T>(t: T) -> isize where T: 'a, 'a: 'b, T: Eq { 0 }

fn main() { }