]> git.lizzy.rs Git - rust.git/blob - src/test/pretty/where-clauses.rs
rustc: Allow cdylibs to link against dylibs
[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() { }