Add new acceptance test scenario: expect unary constructors.

```
  Error:
    × Main thread panicked.
    ├─▶ at crates/aiken-lang/src/gen_uplc.rs:1852:33
    ╰─▶ called `Option::unwrap()` on a `None` value
  ```
This commit is contained in:
KtorZ 2023-03-30 09:06:18 +02:00 committed by Kasey
parent 5bdf9053cf
commit 23b72e18f3
3 changed files with 17 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,3 @@
name = "aiken-lang/acceptance_test_080"
version = "0.0.0"
description = ""

View File

@ -0,0 +1,9 @@
test foo() {
let bar =
Void
expect Void =
bar
True
}