73799e2c3c
It's done with similar constructions where possible trying to preserve intended behavior. Some usages are removed because they test exactly the feature that we are going to drop soon.
33 lines
724 B
Kotlin
Vendored
33 lines
724 B
Kotlin
Vendored
package foo
|
|
|
|
fun run(a: A, arg: String, funRef:(A, String) -> String): String {
|
|
return funRef(a, arg)
|
|
}
|
|
|
|
class A {
|
|
val s = "sA"
|
|
fun memBar(other: String): String = s +":memBar:" + other
|
|
}
|
|
|
|
fun A.extBar(other: String):String = s + ":extBar:" + other
|
|
|
|
fun box():String {
|
|
fun A.locExtBar(other: String):String = s + ":locExtBar:" + other
|
|
|
|
val a = A()
|
|
|
|
var r = run(a, "!!", A::memBar)
|
|
if (r != "sA:memBar:!!") return r
|
|
|
|
r = run(a, "!!", A::extBar)
|
|
if (r != "sA:extBar:!!") return r
|
|
|
|
r = run(a, "!!", A::locExtBar)
|
|
if (r != "sA:locExtBar:!!") return r
|
|
|
|
r = run(a, "!!") { a: A, other: String -> a.s + ":literal:" + other }
|
|
if (r != "sA:literal:!!") return r
|
|
|
|
return "OK"
|
|
}
|