8e470c7c4c
Order of members returned by platform changed Fix test files so test result would not depends on this order
16 lines
160 B
Kotlin
Vendored
16 lines
160 B
Kotlin
Vendored
package test
|
|
|
|
interface KotlinInterface {
|
|
fun bar() {
|
|
|
|
}
|
|
|
|
fun f()
|
|
}
|
|
|
|
|
|
abstract class KotlinClass : KotlinInterface {
|
|
override fun f() {
|
|
|
|
}
|
|
} |