ivy/test/this1.ivy

25 строки
217 B
XML

#lang ivy1.6
action foo(inp:bool)
object spec = {
before foo {
assert inp
}
}
object impl = {
individual thing : bool
implement foo {
thing := inp
}
}
export foo
isolate iso_this = this