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:
5
examples/acceptance_tests/060/aiken.lock
Normal file
5
examples/acceptance_tests/060/aiken.lock
Normal file
@@ -0,0 +1,5 @@
|
||||
# This file was generated by Aiken
|
||||
# You typically do not need to edit this file
|
||||
|
||||
requirements = []
|
||||
packages = []
|
||||
2
examples/acceptance_tests/060/aiken.toml
Normal file
2
examples/acceptance_tests/060/aiken.toml
Normal file
@@ -0,0 +1,2 @@
|
||||
name = "aiken-lang/acceptance_test_060"
|
||||
version = "0.0.0"
|
||||
15
examples/acceptance_tests/060/lib/tests.ak
Normal file
15
examples/acceptance_tests/060/lib/tests.ak
Normal 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)
|
||||
}
|
||||
Reference in New Issue
Block a user