Files
kotlin-fork/compiler/testData/codegen/boxInline/innerClasses/innerInlineFunCapturesOuterFunRef.kt
T

12 lines
180 B
Kotlin
Vendored

// FILE: 1.kt
class E(val x: String) {
fun bar() = x
inner class Inner {
inline fun foo() = this@E::bar
}
}
// FILE: 2.kt
fun box() = E("OK").Inner().foo()()