whiley_test_file 0.6.2

An API for manipulating test files for the Whiley Programming Language.
Documentation
original.name="Array_Valid_9"
======
>>> main.whiley
function f(int[] xs) -> (int r)
requires |xs| > 0
ensures r >= 0 && r < |xs|:
    //
    return 0

method g(int x) -> (int r)
requires x >= 0:
    return x

public export method test():
    //
    g(f([0]))


---