Add new acceptance test scenario 048

This commit is contained in:
KtorZ
2023-01-21 17:49:44 +01:00
parent 5d7585cc05
commit a926a1a2d4
7 changed files with 49 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
test foo_1() {
let a = False
when a is {
a if a -> False
_ -> True
}
}
test foo_2() {
let point = (14, 42)
when point is {
(x, _) if x > 100 -> False
(x, _) if x > 10 -> True
_ -> False
}
}
test foo_3() {
let point = (14, 42)
when point is {
(x, y) if x == 14 && y <= 100 -> True
_ -> False
}
}
test foo_4() {
let a = False
let point = (14, 42)
when point is {
(x, y) if !a -> x + y == 56
_ -> False
}
}