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

11 lines
322 B
Kotlin
Vendored

package test
class Test<T : CharSequence, N : Number> {
private val x = object : TypedListUpdateCallback<String, Long> {
override fun onInserted(position: Long, count: Long, item: String) {}
}
}
interface TypedListUpdateCallback<T : Any, C : Number> {
fun onInserted(position: C, count: C, item: T)
}