Files
why3/bench/java/ignore.mlw
2024-10-02 11:28:58 +02:00

15 lines
214 B
Plaintext

module IgnoreRes
[@java:class_kind:abstract]
type t = {
mutable x : bool;
mutable d : bool;
}
val f (self : t) : bool
writes { self }
let g (self : t) : unit =
let _ = f self in ()
end