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,7 @@
# This file was generated by Aiken
# You typically do not need to edit this file
requirements = []
packages = []
[etags]

View File

@@ -0,0 +1,2 @@
name = "aiken-lang/acceptance_test_093"
version = "0.0.0"

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
}