Files
kotlin-fork/plugins/kapt3/kapt3-compiler/testData/converter/kt19700.kt
T

11 lines
256 B
Kotlin
Vendored

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)
}