Add new acceptance test scenario: 060

```
  Error:
    × Main thread panicked.
    ├─▶ at crates/aiken-lang/src/builder.rs:1088:13
    ╰─▶ not yet implemented
  ```
This commit is contained in:
KtorZ 2023-02-13 10:55:03 +01:00
parent c76c98f153
commit 560c17d5aa
No known key found for this signature in database
GPG Key ID: 33173CB6F77F4277
3 changed files with 22 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,2 @@
name = "aiken-lang/acceptance_test_060"
version = "0.0.0"

View File

@ -0,0 +1,15 @@
type Foo {
foo: Int,
}
const foo_constant = Foo { foo: 42 }
test foo() {
foo_constant == Foo { foo: 42 }
}
const tuple_constant = (1, 2, 3)
test bar() {
tuple_constant == (1, 2, 3)
}