ivy/test/marcelocrash2.ivy

19 строки
270 B
Plaintext
Исходник Обычный вид История

2018-11-23 22:35:19 +03:00
#lang ivy1.6
type q
object marcelo[class](self:marcelo[class].t) = {
type t
destructor foo : q
action hello(x:q) = {
foo := x
}
}
alias marcelo = marcelo[class].t
action world = {
var x:marcelo;
call x.hello(0)
}