Files
kotlin-fork/backend.native/tests/external/codegen/blackbox/localClasses/inLocalExtensionFunction.kt
T
Ilya Matveev 1b553ebfaf backend/tests: Add blackbox tests from Kotlin JVM
Added tests from testData/codegen/box directory. There are blackbox tests
in other directories and they are to be added.
2017-01-20 14:04:04 +03:00

24 lines
335 B
Kotlin

package test
class C(val s : String) {
fun A.a(): String {
class B {
val b : String
get() = this@a.s + this@C.s
}
return B().b
}
fun test(a : A) : String {
return a.a()
}
}
class A(val s: String) {
}
fun box() : String {
return C("K").test(A("O"))
}