ebb9659e03
Currently JVM IR is not supported in kapt, so almost all tests are failing, and thus are muted with IGNORE_BACKEND. #KT-49682
14 lines
284 B
Kotlin
Vendored
14 lines
284 B
Kotlin
Vendored
// IGNORE_BACKEND: JVM_IR
|
|
|
|
package test
|
|
|
|
class Test<T : CharSequence, N : Number> {
|
|
private val x = object : ListUpdateCallback {
|
|
override fun onInserted(position: Int, count: Int) {}
|
|
}
|
|
}
|
|
|
|
interface ListUpdateCallback {
|
|
fun onInserted(position: Int, count: Int)
|
|
}
|