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
5 changed files with 12 additions and 0 deletions

View File

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