Files
kotlin-fork/idea/testData/navigation/implementations/ClassImplementorsWithDeclaration.kt
T
2013-11-18 18:33:33 +04:00

12 lines
190 B
Kotlin
Vendored

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