mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 15:53:49 +00:00
11 lines
282 B
Kotlin
Vendored
11 lines
282 B
Kotlin
Vendored
class A(foo: Int.() -> Unit) {
|
|
init {
|
|
4.foo()
|
|
}
|
|
}
|
|
|
|
fun test(foo: Int.(String) -> Unit) {
|
|
4.foo("")
|
|
4.foo(<!NAMED_ARGUMENTS_NOT_ALLOWED, NAMED_PARAMETER_NOT_FOUND!>p1<!> = ""<!NO_VALUE_FOR_PARAMETER!>)<!>
|
|
4.foo(<!NAMED_ARGUMENTS_NOT_ALLOWED!>p2<!> = "")
|
|
} |