Files
kotlin-fork/compiler/testData/codegen/boxInline/private/kt6453.2.kt
T
Michael Bogdanov 1d84103cce Test for obsolete KT-6453
#KT-6453 Obsolete
2015-10-20 19:19:43 +03:00

8 lines
122 B
Kotlin
Vendored

package test
class A() {
private val x = "OK"
internal inline fun foo(p: (String) -> Unit) {
p(x)
}
}