Files
kotlin/idea/testData/quickfix/convertJavaInterfaceToClass/kotlinInheritor.before.Dependency.kt
Alexey Sedunov 248f4c1645 Light Classes: Implement light elements for 'extends'/'implements' reference lists. Support adding/removing of super type list entries via light elements.
Fix exception on applying "Convert to class" intention to Java interface with Kotlin inheritor(s)
 #KT-11281 Fixed
(cherry picked from commit 4ec4914)
2016-06-28 15:07:24 +03:00

9 lines
53 B
Kotlin
Vendored

interface IK
class C2 : I {
}
class C3: I, IK {
}