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
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED

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{}