add back test 93

This commit is contained in:
microproofs
2024-03-04 10:48:48 -05:00
committed by Kasey
parent d971d9818b
commit e14f091b86
33 changed files with 75 additions and 56 deletions

View File

@@ -0,0 +1,10 @@
pub fn wow(a: Void) -> Int {
when Some(a) is {
Some(Void) -> 42
None -> 0
}
}
test wow_1() {
wow(Void) == 42
}