Files
kotlin/compiler/testData/codegen/boxAgainstJava/syntheticExtensions/implicitReceiver.kt
2015-07-16 13:49:13 +03:00

9 lines
112 B
Kotlin
Vendored

fun box(): String {
return JavaClass().doIt()
}
fun JavaClass.doIt(): String {
x = "OK"
return x
}