Files
kotlin-fork/backend.native/tests/external/codegen/box/smartCasts/implicitExtensionReceiver.kt
T
2017-03-13 15:31:46 +03:00

8 lines
108 B
Kotlin

class A {
fun foo() = "OK"
}
fun A?.bar() = if (this != null) foo() else "FAIL"
fun box() = A().bar()