Files
kotlin-fork/idea/testData/navigation/implementations/ClassImplementatorsWithDeclaration.kt
T
2012-08-16 21:21:28 +04:00

12 lines
190 B
Kotlin

package testing
open class Test
open class TestOther : <caret>Test()
class TestOtherMore : TestOther()
// REF: (testing).Test
// REF: (testing).TestOther
// REF: (testing).TestOtherMore