Add new acceptance test scenario: 059
``` Error: × Main thread panicked. ├─▶ at crates/aiken-lang/src/uplc.rs:1451:52 ╰─▶ called `Option::unwrap()` on a `None` value ``` See also: #310
This commit is contained in:
parent
b7fa57027a
commit
6132c092e3
|
@ -0,0 +1,5 @@
|
|||
# This file was generated by Aiken
|
||||
# You typically do not need to edit this file
|
||||
|
||||
requirements = []
|
||||
packages = []
|
|
@ -0,0 +1,2 @@
|
|||
name = "aiken-lang/acceptance_test_059"
|
||||
version = "0.0.0"
|
|
@ -0,0 +1,7 @@
|
|||
test foo() {
|
||||
let xs = [[1, 2], [4, 5]]
|
||||
when xs is {
|
||||
[[_, _], [_, _]] -> True
|
||||
_ -> False
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue