1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/cmd/tools/vvet/tests/accept_multi_expression_with_comments.vv

8 lines
81 B
V

fn abc() int {
return if true {
0x4000 // 16KB
} else {
0x1000 // 4KB
}
}