Files
kotlin-fork/analysis/analysis-api/testData/components/symbolDeclarationOverridesProvider/isSubclassOf/grandParentClass.kt
T
Roman Golyshev de75297875 KT-66498 [AA] Add more tests for the isSubClassOf/isDirectSubClassOf
Also, reproduce the difference between the K1 and K2 implementation
of `isSubClassOf` for the same class
2024-03-13 16:31:41 +00:00

7 lines
123 B
Kotlin
Vendored

package test
open class <caret_super>GrandParent()
open class Parent : GrandParent()
class <caret_sub>MyClass : Parent()