]> git.proxmox.com Git - rustc.git/blobdiff - src/test/compile-fail/associated-types-ICE-when-projecting-out-of-err.rs
New upstream version 1.14.0+dfsg1
[rustc.git] / src / test / compile-fail / associated-types-ICE-when-projecting-out-of-err.rs
index 084616964674f3ab85423beb904fb9d12b16ac61..5a19aecf667f0fedfd77550fffaaff60b5d7bc34 100644 (file)
@@ -32,5 +32,5 @@ fn ice<A>(a: A) {
     let r = loop {};
     r = r + a;
     //~^ ERROR the trait bound `(): Add<A>` is not satisfied
-    //~| NOTE trait `(): Add<A>` not satisfied
+    //~| NOTE the trait `Add<A>` is not implemented for `()`
 }