about summary refs log tree commit diff
path: root/src/test/compile-fail/struct-fields-typo.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/compile-fail/struct-fields-typo.rs')
-rw-r--r--src/test/compile-fail/struct-fields-typo.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/compile-fail/struct-fields-typo.rs b/src/test/compile-fail/struct-fields-typo.rs
index c897dc55204..0e30c1e86e4 100644
--- a/src/test/compile-fail/struct-fields-typo.rs
+++ b/src/test/compile-fail/struct-fields-typo.rs
@@ -18,7 +18,7 @@ fn main() {
         foo: 0,
         bar: 0.5,
     };
-    let x = foo.baa;//~ ERROR attempted access of field `baa` on type `BuildData`
-    //~^ HELP did you mean `bar`?
+    let x = foo.baa;//~ no field `baa` on type `BuildData`
+    //~^ did you mean `bar`?
     println!("{}", x);
 }