Add new acceptance test scenario 027

```
  Error:
    × Main thread panicked.
    ├─▶ at /Users/ktorz/Documents/Projects/aiken-lang/aiken/crates/project/src/lib.rs:640:36
    ╰─▶ called `Result::unwrap()` on an `Err` value: FreeUnique(Name { text: "test_foo", unique:
        Unique(0) })
  ```
This commit is contained in:
KtorZ 2022-12-20 02:32:43 +01:00
parent 8bd4fd0cda
commit fec7431d11
No known key found for this signature in database
GPG Key ID: 33173CB6F77F4277
2 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,2 @@
name = "acceptance_test_027"
version = "0.0.0"

View File

@ -0,0 +1,11 @@
pub fn foo(_a : a) -> Bool {
True
}
test test_1() {
foo(1)
}
test test_2() {
foo(1) && foo(2)
}