Add new acceptance test scenario 033
``` Error: × Main thread panicked. ├─▶ at crates/lang/src/uplc.rs:523:17 ╰─▶ not yet implemented: Tuple indexing not implementing yet ```
This commit is contained in:
parent
bf7cdfba73
commit
757428fa7f
|
@ -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_033"
|
||||
version = "0.0.0"
|
|
@ -0,0 +1 @@
|
|||
packages = []
|
|
@ -0,0 +1,4 @@
|
|||
test tuple_1() {
|
||||
let coordinates = #(14, 42)
|
||||
coordinates.1st == 14 && coordinates.2nd == 42
|
||||
}
|
Loading…
Reference in New Issue