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 c7ffb56cc839..83686d92a7cd 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 } }