]> git.proxmox.com Git - rustc.git/blobdiff - src/test/compile-fail/kindck-impl-type-params-2.rs
New upstream version 1.12.0+dfsg1
[rustc.git] / src / test / compile-fail / kindck-impl-type-params-2.rs
index 1cf970e150d7033da338ec5b79e80ec5a6056c8a..a455a7b2d5d0f7b190f06542bc91619c4cf919e4 100644 (file)
@@ -21,5 +21,5 @@ fn take_param<T:Foo>(foo: &T) { }
 fn main() {
     let x: Box<_> = box 3;
     take_param(&x);
-    //~^ ERROR `Box<_>: std::marker::Copy` is not satisfied
+    //~^ ERROR `Box<{integer}>: std::marker::Copy` is not satisfied
 }