about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/test/pretty/where-clauses.rs7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/test/pretty/where-clauses.rs b/src/test/pretty/where-clauses.rs
index 6703c35234b..0f3b914334e 100644
--- a/src/test/pretty/where-clauses.rs
+++ b/src/test/pretty/where-clauses.rs
@@ -10,6 +10,7 @@
 
 // pp-exact
 
-fn f<T, 'a, 'b) -> int where T : 'a, 'a: 'b, T: Eq {
-    0
-}
+fn f<'a, 'b, T>(t: T) -> int where T: 'a, 'a:'b, T: Eq { 0 }
+
+fn main() { }
+