5e63f7627f
KT-59486
25 lines
761 B
Kotlin
Vendored
25 lines
761 B
Kotlin
Vendored
// CHECK:
|
|
// Mangled name: Derived
|
|
// Public signature: /Derived|null[0]
|
|
class Derived : Base {
|
|
// CHECK:
|
|
// Mangled name: Derived#<init>(){}
|
|
// Public signature: /Derived.<init>|-5645683436151566731[0]
|
|
// Public signature debug description: <init>(){}
|
|
constructor() /* primary */
|
|
|
|
// CHECK JVM_IR:
|
|
// Mangled name: Derived#getValue(){}kotlin.Int
|
|
// Public signature: /Derived.getValue|5786129636844002858[0]
|
|
// Public signature debug description: getValue(){}kotlin.Int
|
|
fun getValue(): Int
|
|
|
|
// CHECK:
|
|
// Mangled name: Derived#setValue(kotlin.Int){}
|
|
// Public signature: /Derived.setValue|4983946438954816976[0]
|
|
// Public signature debug description: setValue(kotlin.Int){}
|
|
fun setValue(value: Int): Unit
|
|
|
|
}
|
|
|