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

ci: fix for -cflags -Werror jobs

This commit is contained in:
Delyan Angelov
2021-03-31 12:28:42 +03:00
parent e2e7e5fd65
commit 23a6ce00e2

View File

@ -38,7 +38,9 @@ pub:
pos token.Position
}
pub struct EmptyExpr {}
pub struct EmptyExpr {
x int
}
pub fn empty_expr() Expr {
return EmptyExpr{}