Files
kotlin-fork/idea/testData/navigation/implementations/TraitImplementorsWithDeclaration.kt
T
2015-05-13 16:13:13 +02:00

17 lines
269 B
Kotlin
Vendored

package testing
interface Test
interface TestMore: <caret>Test
open class TestClass1: Test
class TestClass2: TestClass1()
class TestClass3: TestMore
// REF: (testing).TestMore
// REF: (testing).TestClass1
// REF: (testing).TestClass2
// REF: (testing).TestClass3