Files
kotlin-fork/compiler/testData/cli/jvm/wrongAbiVersionLib/src/ClassWithInnerLambda.kt
T
2014-11-11 17:40:26 +03:00

8 lines
118 B
Kotlin
Vendored

package wrong
class ClassWithInnerLambda {
fun test(a: () -> Unit) = a
fun other() {
test({})
}
}