v2 / vlib / v / tests / comptime / comptime_const_def_test.v
10 lines · 9 sloc · 114 bytes · 6488041a749df9762348d019c4223908c476f2e2
Raw
1const buf_size = $if true {
2 2
3} $else {
4 1
5}
6
7fn test_main() {
8 mut buf := [buf_size]u8{}
9 assert buf.len == 2
10}
11