3d8d92c7d3
- test data files renamed from *.jet to *.kt
13 lines
350 B
Kotlin
Vendored
13 lines
350 B
Kotlin
Vendored
// KT-128 Support passing only the last closure if all the other parameters have default values
|
|
|
|
fun div(<!UNUSED_PARAMETER!>c<!> : String = "", <!UNUSED_PARAMETER!>f<!> : () -> Unit) {}
|
|
fun f() {
|
|
div { // Nothing passed, but could have been...
|
|
// ...
|
|
}
|
|
|
|
div (c = "foo") { // More things could have been passed
|
|
// ...
|
|
}
|
|
}
|