forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of rust-lang#51360 - estebank:braces-around-literal-stru…
…cts, r=nikomatsakis Suggest parentheses when a struct literal needs them When writing a struct literal in an expression that expects a block to be started afterwards (like an `if` statement), do not suggest using the same struct literal: ``` did you mean `S { /* fields * /}`? ``` Instead, suggest surrounding the expression with parentheses: ``` did you mean `(S { /* fields * /})`? ``` Fix rust-lang#47360, rust-lang#50090. Leaving rust-lang#42982 open to come back to this problem with a better solution.
- Loading branch information
Showing
3 changed files
with
92 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,48 @@ | ||
error: expected type, found `1` | ||
--> $DIR/E0423.rs:22:39 | ||
| | ||
LL | if let S { x: _x, y: 2 } = S { x: 1, y: 2 } { println!("Ok"); } | ||
| ^ expecting a type here because of type ascription | ||
|
||
error: expected expression, found `==` | ||
--> $DIR/E0423.rs:25:13 | ||
| | ||
LL | if T {} == T {} { println!("Ok"); } | ||
| ^^ expected expression | ||
|
||
error: expected type, found `0` | ||
--> $DIR/E0423.rs:31:39 | ||
| | ||
LL | for _ in std::ops::Range { start: 0, end: 10 } {} | ||
| ^ expecting a type here because of type ascription | ||
|
||
error[E0423]: expected function, found struct `Foo` | ||
--> $DIR/E0423.rs:14:13 | ||
| | ||
LL | let f = Foo(); //~ ERROR E0423 | ||
| ^^^ did you mean `Foo { /* fields */ }`? | ||
| ^^^ | ||
| | | ||
| did you mean `foo`? | ||
| did you mean `Foo { /* fields */ }`? | ||
|
||
error[E0423]: expected value, found struct `S` | ||
--> $DIR/E0423.rs:22:32 | ||
| | ||
LL | if let S { x: _x, y: 2 } = S { x: 1, y: 2 } { println!("Ok"); } | ||
| ^ did you mean `(S { /* fields */ })`? | ||
|
||
error[E0423]: expected value, found struct `T` | ||
--> $DIR/E0423.rs:25:8 | ||
| | ||
LL | if T {} == T {} { println!("Ok"); } | ||
| ^ did you mean `(T { /* fields */ })`? | ||
|
||
error[E0423]: expected value, found struct `std::ops::Range` | ||
--> $DIR/E0423.rs:31:14 | ||
| | ||
LL | for _ in std::ops::Range { start: 0, end: 10 } {} | ||
| ^^^^^^^^^^^^^^^ did you mean `(std::ops::Range { /* fields */ })`? | ||
|
||
error: aborting due to previous error | ||
error: aborting due to 7 previous errors | ||
|
||
For more information about this error, try `rustc --explain E0423`. |