d48f92775b
since the bridge unboxes it. #KT-44141 Fixed
15 lines
285 B
Kotlin
Vendored
15 lines
285 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
// KJS_FULL_RUNTIME
|
|
|
|
fun <T : Result<*>> isSuccess(a: A<T>): String =
|
|
a.go {
|
|
it.isSuccess
|
|
}
|
|
|
|
class A<T> {
|
|
fun go(f: (T) -> Boolean): String =
|
|
if (f(Result.success(1) as T)) "OK" else "Fail"
|
|
}
|
|
|
|
fun box(): String = isSuccess(A<Result<Int>>())
|