-
Notifications
You must be signed in to change notification settings - Fork 12.9k
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 #108606 - chenyukang:yukang/fix-104367, r=compiler-er…
…rors Add test case for mismatched open/close delims Fixes #104367 Fixes #105209 After landing #108297, these issues are resolved.
- Loading branch information
Showing
4 changed files
with
57 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#[derive(A)] | ||
struct S { | ||
d: [u32; { | ||
#![cfg] { | ||
#![w,) //~ ERROR mismatched closing delimiter | ||
//~ ERROR this file contains an unclosed delimiter |
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
error: mismatched closing delimiter: `)` | ||
--> $DIR/issue-104367.rs:5:15 | ||
| | ||
LL | #![w,) | ||
| ^ ^ mismatched closing delimiter | ||
| | | ||
| unclosed delimiter | ||
|
||
error: this file contains an unclosed delimiter | ||
--> $DIR/issue-104367.rs:6:71 | ||
| | ||
LL | struct S { | ||
| - unclosed delimiter | ||
LL | d: [u32; { | ||
| - - unclosed delimiter | ||
| | | ||
| unclosed delimiter | ||
LL | #![cfg] { | ||
| - unclosed delimiter | ||
LL | #![w,) | ||
| - missing open `(` for this delimiter | ||
LL | | ||
| ^ | ||
|
||
error: aborting due to 2 previous errors | ||
|
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
// compile-flags: -Zunpretty=ast-tree | ||
#![c={#![c[)x //~ ERROR mismatched closing delimiter | ||
//~ ERROR this file contains an unclosed delimiter |
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
error: mismatched closing delimiter: `)` | ||
--> $DIR/issue-105209.rs:2:11 | ||
| | ||
LL | #![c={#![c[)x | ||
| ^^ mismatched closing delimiter | ||
| | | ||
| unclosed delimiter | ||
|
||
error: this file contains an unclosed delimiter | ||
--> $DIR/issue-105209.rs:3:68 | ||
| | ||
LL | #![c={#![c[)x | ||
| - - - - missing open `(` for this delimiter | ||
| | | | | ||
| | | unclosed delimiter | ||
| | unclosed delimiter | ||
| unclosed delimiter | ||
LL | | ||
| ^ | ||
|
||
error: aborting due to 2 previous errors | ||
|