From cadd4335b4150f94b573eb3c87235d653cfba6d2 Mon Sep 17 00:00:00 2001 From: Niko Matsakis Date: Wed, 31 Dec 2014 15:05:38 -0500 Subject: [PATCH] Fix whitespace. --- .../associated-types-projection-bound-in-supertraits.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/run-pass/associated-types-projection-bound-in-supertraits.rs b/src/test/run-pass/associated-types-projection-bound-in-supertraits.rs index c7ffb56cc83..83686d92a7c 100644 --- a/src/test/run-pass/associated-types-projection-bound-in-supertraits.rs +++ b/src/test/run-pass/associated-types-projection-bound-in-supertraits.rs @@ -26,7 +26,7 @@ trait Int: Not { fn count_zeros(self) -> uint { // neither works let x: Self = self.not(); - 0 + 0 } }