1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

cgen: fix tests

This commit is contained in:
Alexander Medvednikov 2020-03-06 20:25:38 +01:00
parent a277f7d6ab
commit 8a711a8376

View File

@ -539,7 +539,7 @@ fn (g mut Gen) expr(node ast.Expr) {
}
ast.PrefixExpr {
g.write(it.op.str())
g.write('/*pref*/')
// g.write('/*pref*/')
g.expr(it.right)
}
/*