]> git.lizzy.rs Git - rust.git/blobdiff - src/test/compile-fail/vec-res-add.rs
rollup merge of #17355 : gamazeps/issue17210
[rust.git] / src / test / compile-fail / vec-res-add.rs
index 8da9511b493de1e40fc1a9a7b1cce37e752f3ebd..bfd52d69cb217210472b6c66df1511e8877a1b6b 100644 (file)
@@ -8,8 +8,6 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-// error-pattern: failed to find an implementation
-
 struct r {
   i:int
 }
@@ -25,5 +23,7 @@ fn main() {
     let i = vec!(r(0));
     let j = vec!(r(1));
     let k = i + j;
+    //~^ ERROR not implemented
     println!("{}", j);
+    //~^ ERROR not implemented
 }