]> git.proxmox.com Git - rustc.git/blobdiff - src/test/compile-fail/reflect-assoc.rs
Imported Upstream version 1.9.0+dfsg1
[rustc.git] / src / test / compile-fail / reflect-assoc.rs
index 9cf0d252c2d55ce2d7af9471ef6d0b3f1c09b8e2..7cac3f41d546d712b490f3e090e41dd3adef2134 100644 (file)
@@ -24,7 +24,7 @@ struct Struct<T>(T);
 fn is_reflect<T:Reflect>() { }
 
 fn a<T>() {
-    is_reflect::<Box<Get<Output=T>>>(); //~ ERROR not implemented
+    is_reflect::<Box<Get<Output=T>>>(); //~ ERROR E0277
 }
 
 fn ok_a<T: Reflect>() {