whiley_test_file 0.6.2

An API for manipulating test files for the Whiley Programming Language.
Documentation
original.name="ListAssign_Valid_2"
======
>>> main.whiley
type intlist is int | int[]

function f(intlist[] l) -> intlist[]:
    return l

public export method test() :
    (int|int[])[] x

    if 0 == 0:
        x = [1, 2, 3]
    else:
        x = [[1], [2, 3], [5]]
    x[0] = 1
    //
    assume f(x) == [1,2,3]

---