1
0
Fork 0
mirror of https://github.com/ton-blockchain/ton synced 2025-03-09 15:40:10 +00:00

fix legacy test

This commit is contained in:
Andrey Pfau 2023-12-05 18:18:22 +07:00
parent d73f80c4ca
commit 5368287d5f

View file

@ -905,7 +905,7 @@ Expr* parse_expr14(Lexer& lex, CodeBlob& code, bool nv) {
check_global_func(lex.cur(), name); check_global_func(lex.cur(), name);
SrcLocation loc{lex.cur().loc}; SrcLocation loc{lex.cur().loc};
lex.next(); lex.next();
auto x = parse_expr15(lex, code, false); auto x = parse_expr14(lex, code, false);
x->chk_rvalue(lex.cur()); x->chk_rvalue(lex.cur());
res = new Expr{Expr::_Apply, name, {res, x}}; res = new Expr{Expr::_Apply, name, {res, x}};
res->here = loc; res->here = loc;