20e36438e2
Move those tests which do not require neither stdlib nor reflect
7 lines
79 B
Kotlin
Vendored
7 lines
79 B
Kotlin
Vendored
class A
|
|
|
|
fun box(): String {
|
|
fun A.foo() = "OK"
|
|
return (A::foo)(A())
|
|
}
|