]> git.proxmox.com Git - rustc.git/blobdiff - src/test/compile-fail/trait-bounds-on-structs-and-enums-static.rs
Imported Upstream version 1.9.0+dfsg1
[rustc.git] / src / test / compile-fail / trait-bounds-on-structs-and-enums-static.rs
index d93c9bafaef27c36c205a5e933f106810aac50f1..2b59fdcae3534a8658466f457bcca0cb277d1a79 100644 (file)
@@ -17,7 +17,7 @@ struct Foo<T:Trait> {
 }
 
 static X: Foo<usize> = Foo {
-//~^ ERROR not implemented
+//~^ ERROR E0277
     x: 1,
 };