mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
12 lines
137 B
V
12 lines
137 B
V
fn test_inside_ternary() {
|
|
x := if false {
|
|
'foo'
|
|
} else if true {
|
|
'bar'
|
|
} else {
|
|
panic('err')
|
|
'empty'
|
|
}
|
|
assert x == 'bar'
|
|
}
|