We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff895d2 commit f59b897Copy full SHA for f59b897
lib/Parse/ParseExpr.cpp
@@ -1450,13 +1450,14 @@ ParserResult<Expr> Parser::parseExprStringLiteral() {
1450
}
1451
First = false;
1452
1453
-
+
1454
if (Exprs.empty()) {
1455
Status.setIsParseError();
1456
return makeParserResult(Status, new (Context) ErrorExpr(Loc));
1457
1458
1459
- return makeParserResult(Status, new (Context) InterpolatedStringLiteralExpr(Loc, Context.AllocateCopy(Exprs)));
+ return makeParserResult(Status, new (Context) InterpolatedStringLiteralExpr(
1460
+ Loc, Context.AllocateCopy(Exprs)));
1461
1462
1463
void Parser::diagnoseEscapedArgumentLabel(const Token &tok) {
0 commit comments