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