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,11 @@
fn bar(n) {
n == 42
}
test foo() {
if bar(42) {
True
} else {
False
}
}