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

tools: fix v vet file.v for return if x { y // comment } else { z }

This commit is contained in:
Delyan Angelov
2022-06-20 13:28:53 +03:00
parent cf1fc6f090
commit 0e4198f23b
3 changed files with 8 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
fn abc() int {
return if true {
0x4000 // 16KB
} else {
0x1000 // 4KB
}
}