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

17 lines
261 B
Kotlin

package testing
trait Test
trait 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