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