ivy/test/old1.ivy

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

#lang ivy1.6
action a(x:bool) returns (x:bool) = {
x := ~x;
assert ~(x & old x)
}
action b(y:bool) returns (z:bool) = {
z := a(y);
assert ~(y & z)
}
export b