chore: move a test case to 049

This commit is contained in:
rvcas
2023-01-30 11:48:41 -05:00
parent b653714c0c
commit aec79936e2
7 changed files with 25 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
pub fn when_tuple(a: (Int, Int)) -> Int {
when a is {
(a, b) -> a
}
}
test when_tuple_1() {
when_tuple((4, 1)) == 4
}