Files
kotlin-fork/idea/testData/navigation/implementations/multiModule/expectClassSuperclass/common/common.kt
T
2019-02-19 18:27:50 +03:00

16 lines
439 B
Kotlin
Vendored

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