Printing Compound domain elements from lua goes wrong

Issue #785 resolved
Ingmar Dasseville created an issue
vocabulary V {
    type T constructed from {F(string)}
    c : T
}


structure S : V {
    c = F("a")
}

procedure main(){
    for t in tuples(S[V::c].graph.ct) do
        print(t[1])
    end
}

outputs

F(0x18c5430)

instead of

F("a")

Comments (1)

  1. Log in to comment