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:
KtorZ 2022-12-21 19:26:02 +01:00
parent bf7cdfba73
commit 757428fa7f
No known key found for this signature in database
GPG Key ID: 33173CB6F77F4277
5 changed files with 12 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_033"
version = "0.0.0"

View File

@ -0,0 +1 @@
packages = []

View File

@ -0,0 +1,4 @@
test tuple_1() {
let coordinates = #(14, 42)
coordinates.1st == 14 && coordinates.2nd == 42
}