23 lines
612 B
Kotlin
23 lines
612 B
Kotlin
// IntelliJ API Decompiler stub source generated from a class file
|
|
// Implementation of methods is not available
|
|
|
|
package testData.libraries
|
|
|
|
abstract class ClassWithAbstractAndOpenMembers {
|
|
abstract fun abstractFun() : Unit
|
|
|
|
open fun openFun() : Unit { /* compiled code */ }
|
|
|
|
abstract val abstractVal : jet.String
|
|
|
|
open val openVal : jet.String /* compiled code */
|
|
|
|
open val openValWithGetter : jet.String /* compiled code */
|
|
|
|
abstract var abstractVar : jet.String
|
|
|
|
open var openVar : jet.String /* compiled code */
|
|
|
|
open var openVarWithGetter : jet.String /* compiled code */
|
|
}
|