8 lines
118 B
Kotlin
Vendored
8 lines
118 B
Kotlin
Vendored
package wrong
|
|
|
|
class ClassWithInnerLambda {
|
|
fun test(a: () -> Unit) = a
|
|
fun other() {
|
|
test({})
|
|
}
|
|
} |