]> git.lizzy.rs Git - rust.git/blob - src/test/pretty/where-clauses.rs
Auto merge of #90339 - GuillaumeGomez:doc-alias-doc, r=GuillaumeGomez
[rust.git] / src / test / pretty / where-clauses.rs
1 // pp-exact
2
3 fn f<'a, 'b, T>(t: T) -> isize where T: 'a, 'a: 'b, T: Eq { 0 }
4
5 fn main() { }