1 2 3 4 5 6 7 8 9 10 11 12 13
original.name="Subtype_Valid_14" ====== >>> main.whiley type sr7nat is (int n) where n > 0 public export method test() : {sr7nat f} x = {f: 1} x.f = x.f + 1 assert x == {f: 2} ---