9 lines
112 B
Kotlin
Vendored
9 lines
112 B
Kotlin
Vendored
class A(foo: Int.() -> Unit) {
|
|
init {
|
|
4.foo()
|
|
}
|
|
}
|
|
|
|
fun test(foo: Int.() -> Unit) {
|
|
4.foo()
|
|
} |