]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/generic-associated-types/issue-62326-parameter-out-of-range.rs
Don't use spaces before type ascription like colons
[rust.git] / src / test / ui / generic-associated-types / issue-62326-parameter-out-of-range.rs
index db0da40aab08dab84695770326201d353b2f964d..60466d0bcd040b4e6a8a8c76d59442761c24d279 100644 (file)
@@ -4,9 +4,8 @@
 // FIXME(generic-associated-types) Investigate why this doesn't compile.
 
 trait Iterator {
-//~^ ERROR the requirement `for<'a> <Self as Iterator>::Item<'a> : 'a` is not satisfied
+    //~^ ERROR the requirement `for<'a> <Self as Iterator>::Item<'a>: 'a` is not satisfied
     type Item<'a>: 'a;
 }
 
-
 fn main() {}