whiley_test_file 0.6.2

An API for manipulating test files for the Whiley Programming Language.
Documentation
original.name="Lambda_Valid_6"
======
>>> main.whiley


function f(int x) -> int:
    return x + 1

type func_t is function (int) -> int

method g(int p) -> int:
    func_t func = &(int x -> f(x + 1))
    return func(p)

public export method test() :
    int x = g(5)
    assume x == 7

---