Files
kotlin-fork/idea/testData/kotlinAndJavaChecker/javaAgainstKotlin/ExtendClassWithDefaultImplementation_1_8.kt
T
Pavel V. Talanov 8e470c7c4c Fix test data
Order of members returned by platform changed
Fix test files so test result would not depends on this order
2018-08-16 14:03:01 +02:00

16 lines
160 B
Kotlin
Vendored

package test
interface KotlinInterface {
fun bar() {
}
fun f()
}
abstract class KotlinClass : KotlinInterface {
override fun f() {
}
}