Skip to content

Commit

Permalink
Update tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
jseyfried committed Feb 18, 2018
1 parent 876c42d commit 169643d
Show file tree
Hide file tree
Showing 12 changed files with 16 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ error[E0560]: struct `submodule::Demo` has no field named `inocently_mispellable
--> $DIR/issue-42599_available_fields_note.rs:26:39
|
26 | Self { secret_integer: 2, inocently_mispellable: () }
| ^^^^^^^^^^^^^^^^^^^^^^ field does not exist - did you mean `innocently_misspellable`?
| ^^^^^^^^^^^^^^^^^^^^^ field does not exist - did you mean `innocently_misspellable`?

error[E0560]: struct `submodule::Demo` has no field named `egregiously_nonexistent_field`
--> $DIR/issue-42599_available_fields_note.rs:31:39
|
31 | Self { secret_integer: 3, egregiously_nonexistent_field: () }
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ `submodule::Demo` does not have this field
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ `submodule::Demo` does not have this field
|
= note: available fields are: `favorite_integer`, `secret_integer`, `innocently_misspellable`, `another_field`, `yet_another_field` ... and 2 others

Expand Down
2 changes: 1 addition & 1 deletion src/test/ui/error-codes/E0062.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ error[E0062]: field `x` specified more than once
17 | x: 0,
| ---- first use of `x`
18 | x: 0,
| ^^ used more than once
| ^ used more than once

error: aborting due to previous error

2 changes: 1 addition & 1 deletion src/test/ui/error-codes/E0559.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ error[E0559]: variant `Field::Fool` has no field named `joke`
--> $DIR/E0559.rs:16:27
|
16 | let s = Field::Fool { joke: 0 };
| ^^^^^ `Field::Fool` does not have this field
| ^^^^ `Field::Fool` does not have this field
|
= note: available fields are: `x`

Expand Down
2 changes: 1 addition & 1 deletion src/test/ui/error-codes/E0560.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ error[E0560]: struct `Simba` has no field named `father`
--> $DIR/E0560.rs:16:32
|
16 | let s = Simba { mother: 1, father: 0 };
| ^^^^^^^ `Simba` does not have this field
| ^^^^^^ `Simba` does not have this field
|
= note: available fields are: `mother`

Expand Down
2 changes: 1 addition & 1 deletion src/test/ui/issue-19922.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ error[E0559]: variant `Homura::Akemi` has no field named `kaname`
--> $DIR/issue-19922.rs:16:34
|
16 | let homura = Homura::Akemi { kaname: () };
| ^^^^^^^ `Homura::Akemi` does not have this field
| ^^^^^^ `Homura::Akemi` does not have this field
|
= note: available fields are: `madoka`

Expand Down
2 changes: 1 addition & 1 deletion src/test/ui/numeric-fields.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ error[E0560]: struct `S` has no field named `0b1`
--> $DIR/numeric-fields.rs:14:15
|
14 | let s = S{0b1: 10, 0: 11};
| ^^^^ `S` does not have this field
| ^^^ `S` does not have this field
|
= note: available fields are: `0`, `1`

Expand Down
2 changes: 1 addition & 1 deletion src/test/ui/struct-fields-hints-no-dupe.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ error[E0560]: struct `A` has no field named `bar`
--> $DIR/struct-fields-hints-no-dupe.rs:20:9
|
20 | bar : 42,
| ^^^^^ field does not exist - did you mean `barr`?
| ^^^ field does not exist - did you mean `barr`?

error: aborting due to previous error

2 changes: 1 addition & 1 deletion src/test/ui/struct-fields-hints.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ error[E0560]: struct `A` has no field named `bar`
--> $DIR/struct-fields-hints.rs:20:9
|
20 | bar : 42,
| ^^^^^ field does not exist - did you mean `car`?
| ^^^ field does not exist - did you mean `car`?

error: aborting due to previous error

2 changes: 1 addition & 1 deletion src/test/ui/struct-fields-too-many.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ error[E0560]: struct `BuildData` has no field named `bar`
--> $DIR/struct-fields-too-many.rs:18:9
|
18 | bar: 0
| ^^^^ `BuildData` does not have this field
| ^^^ `BuildData` does not have this field
|
= note: available fields are: `foo`

Expand Down
8 changes: 4 additions & 4 deletions src/test/ui/suggest-private-fields.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -2,27 +2,27 @@ error[E0560]: struct `xc::B` has no field named `aa`
--> $DIR/suggest-private-fields.rs:25:9
|
25 | aa: 20,
| ^^^ field does not exist - did you mean `a`?
| ^^ field does not exist - did you mean `a`?

error[E0560]: struct `xc::B` has no field named `bb`
--> $DIR/suggest-private-fields.rs:27:9
|
27 | bb: 20,
| ^^^ `xc::B` does not have this field
| ^^ `xc::B` does not have this field
|
= note: available fields are: `a`

error[E0560]: struct `A` has no field named `aa`
--> $DIR/suggest-private-fields.rs:32:9
|
32 | aa: 20,
| ^^^ field does not exist - did you mean `a`?
| ^^ field does not exist - did you mean `a`?

error[E0560]: struct `A` has no field named `bb`
--> $DIR/suggest-private-fields.rs:34:9
|
34 | bb: 20,
| ^^^ field does not exist - did you mean `b`?
| ^^ field does not exist - did you mean `b`?

error: aborting due to 4 previous errors

2 changes: 1 addition & 1 deletion src/test/ui/union/union-fields-2.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ error[E0560]: union `U` has no field named `c`
--> $DIR/union-fields-2.rs:20:29
|
20 | let u = U { a: 0, b: 1, c: 2 }; //~ ERROR union expressions should have exactly one field
| ^^ `U` does not have this field
| ^ `U` does not have this field
|
= note: available fields are: `a`, `b`

Expand Down
2 changes: 1 addition & 1 deletion src/test/ui/union/union-suggest-field.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ error[E0560]: union `U` has no field named `principle`
--> $DIR/union-suggest-field.rs:20:17
|
20 | let u = U { principle: 0 };
| ^^^^^^^^^^ field does not exist - did you mean `principal`?
| ^^^^^^^^^ field does not exist - did you mean `principal`?

error[E0609]: no field `principial` on type `U`
--> $DIR/union-suggest-field.rs:22:15
Expand Down

0 comments on commit 169643d

Please sign in to comment.