From acd31db22938968929913b54779cb33a3c2e03df Mon Sep 17 00:00:00 2001 From: Niko Matsakis Date: Sat, 20 Dec 2014 08:41:33 -0500 Subject: [PATCH] patch up pretty-printing test --- src/test/pretty/where-clauses.rs | 7 ++++--- 1 file 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 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() { } +