]> git.lizzy.rs Git - rust.git/blobdiff - src/test/pretty/where-clauses.rs
Fix pretty-printing of lifetime bound
[rust.git] / src / test / pretty / where-clauses.rs
index 0f3b914334e12b09cb9b4fabfe668124419fadf0..388064a8be8546cd0078ef0abf0899b00d1c733d 100644 (file)
@@ -10,7 +10,6 @@
 
 // pp-exact
 
-fn f<'a, 'b, T>(t: T) -> int where T: 'a, 'a:'b, T: Eq { 0 }
+fn f<'a, 'b, T>(t: T) -> isize where T: 'a, 'a: 'b, T: Eq { 0 }
 
 fn main() { }
-