mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 08:31:30 +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
53 B
Kotlin
Vendored
9 lines
53 B
Kotlin
Vendored
interface IK
|
|
|
|
class C2 : I {
|
|
|
|
}
|
|
|
|
class C3: I, IK {
|
|
|
|
} |