Files
kotlin-fork/kotlin-native/backend.native/tests/codegen/inline/innerInlineFunCapturesOuter_linkTest_lib.kt
T
2021-09-16 10:54:14 +00:00

7 lines
109 B
Kotlin

package a
class E(val x: String) {
inner class Inner {
inline fun foo(y: String) = x + y
}
}