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,9 @@
test foo() {
let bar =
Void
expect Void =
bar
True
}