fun nullableFun(): T { return null as T } fun box(): String { val t = nullableFun() return if (t?.length == null) "OK" else "Fail" }