2423b7b62f
Also adds rendering of @Metadata annotations in Kapt3 and Kapt4 tests (currently disabled for a few tests). Co-authored-by: Alexander Udalov <alexander.udalov@jetbrains.com>
15 lines
315 B
Kotlin
Vendored
15 lines
315 B
Kotlin
Vendored
// STRIP_METADATA
|
|
// TODO: Re-enable metadata generation
|
|
|
|
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)
|
|
}
|