Rollup merge of #27491 - GuillaumeGomez:patch-4, r=Manishearth

This commit is contained in:
Manish Goregaokar 2015-08-04 18:00:53 +05:30
commit 6be272cff5
2 changed files with 3 additions and 3 deletions

View file

@ -14,6 +14,6 @@ struct Monster {
fn main() {
let _m = Monster(); //~ ERROR `Monster` is a struct variant name, but
let _m = Monster(); //~ ERROR `Monster` is the name of a struct or
//~^ HELP did you mean to write: `Monster { /* fields */ }`?
}