tests: re-add the disambiguated `for (val in [TokenValue(`+`), TokenValue(`-`)]) {` test
parent
bdc1375d00
commit
366ff17bff
|
@ -0,0 +1,10 @@
|
||||||
|
type TokenValue = rune | u64
|
||||||
|
|
||||||
|
fn test_for_cond() {
|
||||||
|
val := `+`
|
||||||
|
for (val in [TokenValue(`+`), TokenValue(`-`)]) {
|
||||||
|
println('ok')
|
||||||
|
break
|
||||||
|
}
|
||||||
|
assert true
|
||||||
|
}
|
Loading…
Reference in New Issue