Skip to content

Commit 71cb4e9

Browse files
committed
Fix build failure
Two PRs racec, causing a build failure.
1 parent a78012d commit 71cb4e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/SwiftParser/TopLevel.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ extension Parser {
144144
if let remainingTokens = remainingTokensIfMaximumNestingLevelReached() {
145145
return RawCodeBlockItemSyntax(
146146
remainingTokens,
147-
item: RawSyntax(RawMissingExprSyntax(arena: self.arena)),
147+
item: .expr(RawExprSyntax(RawMissingExprSyntax(arena: self.arena))),
148148
semicolon: nil,
149149
errorTokens: nil,
150150
arena: self.arena

0 commit comments

Comments
 (0)