Files
why3/examples/tests/partial.mlw
2024-10-31 15:27:09 +01:00

11 lines
132 B
Plaintext

module S
use int.Int
use string.OCaml
let partial s (text: string) : ()
= let (ghost n) = length text in
assert { n >= 0 }
end