]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/generic-associated-types/missing-where-clause-on-trait.rs
Fix duplicate error
[rust.git] / src / test / ui / generic-associated-types / missing-where-clause-on-trait.rs
index fa846516040f39ea4e3fda429587424ff9a23aa3..ad9f2e3e4ec4a8273d8248c7d7ec43c0d6b6e79c 100644 (file)
@@ -8,7 +8,6 @@ trait Foo {
 impl Foo for () {
     type Assoc<'a, 'b> where 'a: 'b = ();
     //~^ `impl` associated type
-    //~| impl has stricter
 }
 
 fn main() {}