mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-18 08:31:38 +00:00
21 lines
399 B
Kotlin
Vendored
21 lines
399 B
Kotlin
Vendored
class MyList<T> {
|
|
|
|
private fun noSignature(): T? = null
|
|
|
|
fun withSignature(): T? = null
|
|
|
|
fun removeHeader() {
|
|
fun a () {
|
|
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
|