File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1083,7 +1083,7 @@ impl Parser {
1083
1083
if self.token == token::NOT {
1084
1084
self.bump();
1085
1085
let tts = match self.token {
1086
- token::LPAREN | token::LBRACE | token::LBRACKET => {
1086
+ token::LPAREN | token::LBRACE => {
1087
1087
let ket = token::flip_delimiter(self.token);
1088
1088
self.parse_unspanned_seq(copy self.token, ket,
1089
1089
seq_sep_none(),
@@ -3418,7 +3418,7 @@ impl Parser {
3418
3418
self.expect(token::NOT);
3419
3419
let id = self.parse_ident();
3420
3420
let tts = match self.token {
3421
- token::LPAREN | token::LBRACE | token::LBRACKET => {
3421
+ token::LPAREN | token::LBRACE => {
3422
3422
let ket = token::flip_delimiter(self.token);
3423
3423
self.parse_unspanned_seq(copy self.token, ket,
3424
3424
seq_sep_none(),
You can’t perform that action at this time.
0 commit comments