1071919706
Also remove any mentions of NewInference, and rename some tests.
14 lines
199 B
Kotlin
Vendored
14 lines
199 B
Kotlin
Vendored
fun foo(s: String): Boolean {
|
|
if (s != "kotlin") throw AssertionError(s)
|
|
return true
|
|
}
|
|
|
|
fun bar(f: (String) -> Unit) {
|
|
f("kotlin")
|
|
}
|
|
|
|
fun box(): String {
|
|
bar(::foo)
|
|
return "OK"
|
|
}
|