]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/associated-const/issue-63496.rs
New upstream version 1.41.1+dfsg1
[rustc.git] / src / test / ui / associated-const / issue-63496.rs
index 311c48b5e48c5ef500347d7162574a1c58263e0b..f9f663af5e2655bce0d3f39d8880e299e11654f9 100644 (file)
@@ -2,8 +2,8 @@ trait A {
     const C: usize;
 
     fn f() -> ([u8; A::C], [u8; A::C]);
-    //~^ ERROR: type annotations needed: cannot resolve
-    //~| ERROR: type annotations needed: cannot resolve
+    //~^ ERROR: type annotations needed
+    //~| ERROR: type annotations needed
 }
 
 fn main() {}