Skip to content

Commit

Permalink
Fix #104367, add test case for mismatched open/close delims
Browse files Browse the repository at this point in the history
  • Loading branch information
chenyukang committed Mar 1, 2023
1 parent 64165aa commit 94a200b
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tests/ui/parser/issues/issue-104367.rs
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
26 changes: 26 additions & 0 deletions tests/ui/parser/issues/issue-104367.stderr
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

0 comments on commit 94a200b

Please sign in to comment.