]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/generic-associated-types/issue-67424.rs
Rollup merge of #102954 - GuillaumeGomez:cfg-hide-attr-checks, r=Manishearth
[rust.git] / src / test / ui / generic-associated-types / issue-67424.rs
index fa35a3e8b04d1f609078d4aa5a47944d34d7d0d2..b6c7c70cd83183d85b0085ec2598de2f2be9fb16 100644 (file)
@@ -1,3 +1,4 @@
+// check-pass
 // Fixed by #67160
 
 trait Trait1 {
@@ -6,7 +7,6 @@ trait Trait1 {
 
 trait Trait2 {
     type Type1<B>: Trait1<A=B>;
-    //~^ ERROR: generic associated types are unstable
 }
 
 fn main() {}