mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-28 04:44:57 +00:00
fix: Fix pat fragment parsers choking on <eoi>
This commit is contained in:
parent
8846b5cf4a
commit
f9bb5476c3
2 changed files with 39 additions and 1 deletions
|
@ -181,7 +181,7 @@ fn pattern_single_r(p: &mut Parser<'_>, recovery_set: TokenSet) {
|
|||
// ^
|
||||
if matches!(
|
||||
p.current(),
|
||||
T![=] | T![,] | T![:] | T![')'] | T!['}'] | T![']'] | T![if]
|
||||
T![=] | T![,] | T![:] | T![')'] | T!['}'] | T![']'] | T![if] | EOF
|
||||
) {
|
||||
// test half_open_range_pat
|
||||
// fn f() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue