-
Notifications
You must be signed in to change notification settings - Fork 13.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix #104367, add test case for mismatched open/close delims
- Loading branch information
1 parent
64165aa
commit 94a200b
Showing
2 changed files
with
32 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 | ||
|