about summary refs log tree commit diff
path: root/src/test/compile-fail/struct-no-fields.rs
diff options
context:
space:
mode:
authormr.Shu <mr@shu.io>2014-02-06 10:38:08 +0100
committermr.Shu <mr@shu.io>2014-02-08 20:59:38 +0100
commitee3fa68fed13e7b8cde523e4bc73b9a07d082212 (patch)
tree225c4c1b7d0c304d9f2f6e44c32c4d7345a26b26 /src/test/compile-fail/struct-no-fields.rs
parent35518514c472e0b7bb4dd3588c4c80bd6dd5a627 (diff)
downloadrust-ee3fa68fed13e7b8cde523e4bc73b9a07d082212.tar.gz
rust-ee3fa68fed13e7b8cde523e4bc73b9a07d082212.zip
Fixed error starting with uppercase
Error messages cleaned in librustc/middle

Error messages cleaned in libsyntax

Error messages cleaned in libsyntax more agressively

Error messages cleaned in librustc more aggressively

Fixed affected tests

Fixed other failing tests

Last failing tests fixed
Diffstat (limited to 'src/test/compile-fail/struct-no-fields.rs')
-rw-r--r--src/test/compile-fail/struct-no-fields.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/compile-fail/struct-no-fields.rs b/src/test/compile-fail/struct-no-fields.rs
index 6142ec0653c..ee853ade18e 100644
--- a/src/test/compile-fail/struct-no-fields.rs
+++ b/src/test/compile-fail/struct-no-fields.rs
@@ -9,6 +9,6 @@
 // except according to those terms.
 
 struct Foo {}
-//~^ ERROR: Unit-like struct definition should be written as `struct Foo;`
+//~^ ERROR: unit-like struct definition should be written as `struct Foo;`
 
 fn main() {}