11 lines
256 B
Kotlin
Vendored
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)
|
|
} |