Files
kotlin/compiler/testData/codegen/box/classes/privateOuterFunctions.kt
2018-06-28 12:26:41 +02:00

38 lines
608 B
Kotlin
Vendored

// IGNORE_BACKEND: JVM_IR
// IGNORE_BACKEND: NATIVE
class C {
private fun String.ext() : String = ""
private fun f() {}
public fun foo() : String {
{
"".ext()
f()
}.invoke()
object : Runnable {
public override fun run() {
"".ext()
f()
}
}.run()
Inner().innerFun()
return "OK"
}
private inner class Inner() {
fun innerFun() {
"".ext()
f()
}
}
}
interface Runnable {
fun run(): Unit
}
fun box() = C().foo()