build_visitor fixed, going to test it

This commit is contained in:
ProgramSnail 2023-04-25 21:21:36 +03:00
parent 5bf0c1bf48
commit c34523bd4f
23 changed files with 45468 additions and 45273 deletions

View file

@ -3,6 +3,6 @@ struct StructWithRef =
decl test_memory : Unit -> Unit
def test_memory = {
const @unique_ref1 <- @(5)
var @unique_ref2 <- @(Array.of 1 2 3)
const @unique_ref1 <- Int.@_new 5
var @unique_ref2 <- Array.@of 1 2 3
}