mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 08:31:28 +00:00
Fix exception on applying "Convert to class" intention to Java interface with Kotlin inheritor(s) #KT-11281 Fixed (cherry picked from commit 4ec4914)
9 lines
57 B
Kotlin
Vendored
9 lines
57 B
Kotlin
Vendored
interface IK
|
|
|
|
class C2 : I() {
|
|
|
|
}
|
|
|
|
class C3: I(), IK {
|
|
|
|
} |