mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 00:21:28 +00:00
11 lines
180 B
Kotlin
Vendored
11 lines
180 B
Kotlin
Vendored
import kotlin.test.assertNull
|
|
|
|
fun foo(x: String? = "Fail") {
|
|
assertNull(x)
|
|
}
|
|
|
|
fun box(): String {
|
|
::foo.callBy(mapOf(::foo.parameters.single() to null))
|
|
return "OK"
|
|
}
|