ebb9659e03
Currently JVM IR is not supported in kapt, so almost all tests are failing, and thus are muted with IGNORE_BACKEND. #KT-49682
10 lines
309 B
Kotlin
Vendored
10 lines
309 B
Kotlin
Vendored
abstract class Base {
|
|
protected abstract fun doJob(job: String, delay: Int)
|
|
protected abstract fun <T : CharSequence> doJobGeneric(job: T, delay: Int)
|
|
}
|
|
|
|
class Impl : Base() {
|
|
override fun doJob(job: String, delay: Int) {}
|
|
override fun <T : CharSequence> doJobGeneric(job: T, delay: Int) {}
|
|
}
|