Files
kotlin-fork/compiler/testData/codegen/boxInline/private/kt8095.2.kt
T
Michael Bogdanov 378233e1f5 Test for obsolete KT-8095
#KT-8095 Obsolete
2015-10-20 19:19:42 +03:00

7 lines
120 B
Kotlin
Vendored

package test
class C(private val a : String) {
internal inline fun g(x: (s: String) -> Unit) {
x(a)
}
}