5e63f7627f
KT-59486
30 lines
976 B
Kotlin
Vendored
30 lines
976 B
Kotlin
Vendored
// CHECK:
|
|
// Mangled name: KotlinBox
|
|
// Public signature: /KotlinBox|null[0]
|
|
class KotlinBox<T : Any?> {
|
|
// CHECK:
|
|
// Mangled name: KotlinBox{}data
|
|
// Public signature: /KotlinBox.data|4273011692695536650[0]
|
|
// Public signature debug description: {}data
|
|
val data: T?
|
|
// CHECK JVM_IR:
|
|
// Mangled name: KotlinBox#<get-data>(){}1:0?
|
|
// Public signature: /KotlinBox.data.<get-data>|-1848755759162008356[0]
|
|
// Public signature debug description: <get-data>(){}1:0?
|
|
get
|
|
|
|
// CHECK:
|
|
// Mangled name: KotlinBox#<init>(1:0?){}
|
|
// Public signature: /KotlinBox.<init>|-6137285739236751325[0]
|
|
// Public signature debug description: <init>(1:0?){}
|
|
constructor(data: T?) /* primary */
|
|
|
|
}
|
|
|
|
// CHECK JVM_IR:
|
|
// Mangled name: #f(KotlinBox<JavaBox>){}kotlin.String
|
|
// Public signature: /f|-1490534641019781585[0]
|
|
// Public signature debug description: f(KotlinBox<JavaBox>){}kotlin.String
|
|
fun f(r: KotlinBox<JavaBox>): String
|
|
|