Files
why3/bench/programs/good/poly.mlw
Jean-Christophe Filliatre 02be08fa14 updated bench/
2016-02-22 16:10:13 +01:00

9 lines
118 B
Plaintext

module M
let f (x:'a) ensures { result=x } = x
let p () ensures { result = 1 }
= if f True then f 1 else f 2
end