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

staments + a sum type fix

This commit is contained in:
Alexander Medvednikov
2019-12-28 14:11:05 +01:00
parent 68e1d8e8eb
commit b5fe40624c
9 changed files with 244 additions and 157 deletions

View File

@@ -31,6 +31,17 @@ struct BinExpr {
}
fn expr1() Expr {
mut e := Expr{}
e = BinExpr{}
return e
//return BinExpr{}
}
fn expr2() Expr {
return BinExpr{}
}
struct UnaryExpr {
}