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:
KtorZ 2023-02-13 10:46:48 +01:00 committed by Kasey
parent b7fa57027a
commit 6132c092e3
3 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,5 @@
# This file was generated by Aiken
# You typically do not need to edit this file
requirements = []
packages = []

View File

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

View File

@ -0,0 +1,7 @@
test foo() {
let xs = [[1, 2], [4, 5]]
when xs is {
[[_, _], [_, _]] -> True
_ -> False
}
}