ae07d0e9ce
^KT-56863 Fixed
12 lines
117 B
Kotlin
Vendored
12 lines
117 B
Kotlin
Vendored
// ISSUE: KT-56863
|
|
interface I
|
|
|
|
open class Some {
|
|
val x: Int
|
|
|
|
init {
|
|
this as I
|
|
x = 1
|
|
}
|
|
}
|