Add new acceptance test scenario (015)

```
  Error:
    × Main thread panicked.
    ├─▶ at crates/lang/src/uplc.rs:2388:21
    ╰─▶ not yet implemented
  ```
This commit is contained in:
KtorZ 2022-12-14 10:14:33 +01:00
parent 3c664b9651
commit 7c54283e69
No known key found for this signature in database
GPG Key ID: 33173CB6F77F4277
2 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,2 @@
name = "acceptance_test_015"
version = "0.0.0"

View File

@ -0,0 +1,11 @@
pub opaque type Map<key, value> {
inner: List<#(key, value)>,
}
pub fn new() {
Map { inner: [] }
}
test new_1() {
new() == Map { inner: [] }
}