about summary refs log tree commit diff
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2015-07-16 16:37:30 +0530
committerManish Goregaokar <manishsmail@gmail.com>2015-07-16 16:37:41 +0530
commit7c202a39c156d9a51c3dd1ebe34ecaaea188a175 (patch)
tree288046790ac268ce3c7a5938748914a0b7c9c34f
parent30ac7e78e26f1f52fc8c5b56bbdab4cc27bb3263 (diff)
downloadrust-7c202a39c156d9a51c3dd1ebe34ecaaea188a175.tar.gz
rust-7c202a39c156d9a51c3dd1ebe34ecaaea188a175.zip
Fixup test
-rw-r--r--src/test/compile-fail/issue-6702.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/compile-fail/issue-6702.rs b/src/test/compile-fail/issue-6702.rs
index e464ddf54c2..bfda113ae8b 100644
--- a/src/test/compile-fail/issue-6702.rs
+++ b/src/test/compile-fail/issue-6702.rs
@@ -14,6 +14,6 @@ struct Monster {
 
 
 fn main() {
-    let _m = Monster(); //~ ERROR `Monster` is a structure name, but
+    let _m = Monster(); //~ ERROR `Monster` is a struct variant name, but
     //~^ HELP did you mean to write: `Monster { /* fields */ }`?
 }