Files
kotlin-fork/compiler/testData/codegen/boxInline/private/kt8094.2.kt
T
Michael Bogdanov 32d51af5dd Test for obsolete KT-8094
#KT-8094 Obsolete
2015-10-20 19:19:42 +03:00

11 lines
125 B
Kotlin
Vendored

package test
object X {
private fun f() { }
internal inline fun g(x: () -> Unit) {
x()
f()
}
}