]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/issues/issue-35677.rs
New upstream version 1.51.0+dfsg1
[rustc.git] / src / test / ui / issues / issue-35677.rs
index ba2d503d7fcf1269659b6d8d47b6f7f8e2a7c0d9..15d139790625efb3e5e5b6f8496f5a855e3bc5af 100644 (file)
@@ -2,7 +2,7 @@ use std::collections::HashSet;
 
 fn is_subset<T>(this: &HashSet<T>, other: &HashSet<T>) -> bool {
     this.is_subset(other)
-    //~^ ERROR no method named
+    //~^ ERROR the method
 }
 
 fn main() {}