]> git.proxmox.com Git - rustc.git/blobdiff - src/test/compile-fail/typeck-default-trait-impl-send-param.rs
Imported Upstream version 1.9.0+dfsg1
[rustc.git] / src / test / compile-fail / typeck-default-trait-impl-send-param.rs
index 185e9dcb3bd91d32217f85f18da308216471694c..0c548b3bd990961465eab24ea223550b31f5b943 100644 (file)
@@ -12,7 +12,7 @@
 // an explicit trait bound.
 
 fn foo<T>() {
-    is_send::<T>() //~ ERROR not implemented
+    is_send::<T>() //~ ERROR E0277
 }
 
 fn is_send<T:Send>() {