Files
kotlin-fork/compiler/testData/writeSignature/syntheticAccessorForGeneric.kt
T
2020-01-29 17:14:41 +01:00

21 lines
390 B
Kotlin
Vendored

class MyList<T> {
private fun noSignature(): T? = null
fun withSignature(): T? = null
fun removeHeader() {
{
noSignature()
}
}
}
// method: MyList::withSignature
// jvm signature: ()Ljava/lang/Object;
// generic signature: ()TT;
// method: MyList::access$noSignature
// jvm signature: (LMyList;)Ljava/lang/Object;
// generic signature: null