mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 15:53:40 +00:00
24 lines
562 B
Kotlin
Vendored
24 lines
562 B
Kotlin
Vendored
class MyList<T> {
|
|
|
|
private fun noSignature(): T? = null
|
|
|
|
fun withSignature(): T? = null
|
|
|
|
fun removeHeader() {
|
|
fun a () {
|
|
noSignature()
|
|
}
|
|
}
|
|
}
|
|
|
|
/*
|
|
Class signature,
|
|
local fun class signature,
|
|
'noSignature' and 'withSignature' fun signatures
|
|
*/
|
|
|
|
// 4 signature
|
|
// 2 signature \(\)TT\;
|
|
// 1 signature Lkotlin/jvm/internal/Lambda\;Lkotlin/jvm/functions/Function0<Lkotlin/Unit\;>\;
|
|
// 1 signature <T:Ljava/lang/Object\;>Ljava/lang/Object\;
|
|
// 1 public final static synthetic access\$noSignature\(LMyList\;\)Ljava/lang/Object |