Add new acceptance test scenario: 062

```
  Error:
    × Main thread panicked.
    ├─▶ at crates/uplc/src/optimize.rs:16:68
    ╰─▶ called `Result::unwrap()` on an `Err` value: FreeUnique(Name { text: "tests_bar", unique: Unique(1) })
  ```
This commit is contained in:
KtorZ 2023-02-16 13:58:51 +01:00 committed by Lucas
parent 3204322da6
commit e7a61df1f3
3 changed files with 19 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_062'
version = '0.0.0'
description = ''

View File

@ -0,0 +1,11 @@
fn bar(n) {
n == 42
}
test foo() {
if bar(42) {
True
} else {
False
}
}