blob: 7483978471a55ecf2a3bd557ea0d91ec10c00f0a [file]
package test
interface KotlinInterface {
@JvmDefault
fun bar() {
}
}
abstract class KotlinClass : KotlinInterface {
}