5948b69679
(cherry picked from commit 4755596)
8 lines
105 B
Kotlin
Vendored
8 lines
105 B
Kotlin
Vendored
// IS_APPLICABLE: FALSE
|
|
|
|
interface I {
|
|
val a: String
|
|
}
|
|
object O: I {
|
|
override val <caret>a = ""
|
|
} |