class Box(val value: T) fun box() : String { val b = Box(2 * 3) val expected: Long? = 6L return if (b.value == expected) "OK" else "fail" }