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:
parent
c76c98f153
commit
560c17d5aa
|
@ -0,0 +1,5 @@
|
||||||
|
# This file was generated by Aiken
|
||||||
|
# You typically do not need to edit this file
|
||||||
|
|
||||||
|
requirements = []
|
||||||
|
packages = []
|
|
@ -0,0 +1,2 @@
|
||||||
|
name = "aiken-lang/acceptance_test_060"
|
||||||
|
version = "0.0.0"
|
|
@ -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)
|
||||||
|
}
|
Loading…
Reference in New Issue