original.name="Template_Valid_12" ====== >>> main.whiley function id(T x) -> (T y) ensures x == y: return x public export method test(): int x = id(1) bool b = id(true) // assert x == 1 assert b == true ---