```
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) })
```
12 lines
89 B
Plaintext
12 lines
89 B
Plaintext
fn bar(n) {
|
|
n == 42
|
|
}
|
|
|
|
test foo() {
|
|
if bar(42) {
|
|
True
|
|
} else {
|
|
False
|
|
}
|
|
}
|