Files
kotlin-fork/idea/testData/navigation/implementations/multiModule/expectClassSuperclass/common/common.kt
T
2017-10-24 15:43:52 +03:00

15 lines
368 B
Kotlin
Vendored

package test
open class <caret>SimpleParent
expect open class ExpectedChild : SimpleParent
class ExpectedChildChild : ExpectedChild()
class SimpleChild : SimpleParent()
// REF: [common] (test).ExpectedChild
// REF: [common] (test).ExpectedChildChild
// REF: [common] (test).SimpleChild
// REF: [jvm] (test).ExpectedChild
// REF: [jvm] (test).ExpectedChildChildJvm