1 2 3 4 5 6 7 8 9 10 11
original.name="Template_Valid_39" ====== >>> main.whiley type Message<T,S> is { T t, S s } public export method test(): Message<int,bool> h = { t:1, s:false } assert h.t == 1 assert h.s == false ---