]> git.proxmox.com Git - rustc.git/blobdiff - src/test/compile-fail/associated-types-path-2.rs
Imported Upstream version 1.9.0+dfsg1
[rustc.git] / src / test / compile-fail / associated-types-path-2.rs
index c9374d42938002979a871480b1e1b94987ea567b..0c077e37e43bebe23675326ecb13a34160579db6 100644 (file)
@@ -38,12 +38,12 @@ pub fn f1_int_uint() {
 
 pub fn f1_uint_uint() {
     f1(2u32, 4u32);
-    //~^ ERROR the trait `Foo` is not implemented
+    //~^ ERROR `u32: Foo` is not satisfied
 }
 
 pub fn f1_uint_int() {
     f1(2u32, 4i32);
-    //~^ ERROR the trait `Foo` is not implemented
+    //~^ ERROR `u32: Foo` is not satisfied
 }
 
 pub fn f2_int() {