whiley_test_file 0.6.2

An API for manipulating test files for the Whiley Programming Language.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
original.name="Unsafe_Invalid_4"
whiley.compile.strict=true
======
>>> main.whiley
type fun_t is function(int)->(int)

unsafe function f(int x) -> (int y):
    assert x >= 0
    return x

unsafe public export method test():
    fun_t x = &(int x -> f(x))

---
E613 main.whiley 8,25:28