d13ac6b5a4
#KT-9697 In Progress
9 lines
110 B
Kotlin
Vendored
9 lines
110 B
Kotlin
Vendored
// IS_APPLICABLE: false
|
|
|
|
interface A {
|
|
val foo: Int
|
|
}
|
|
|
|
class B: A {
|
|
override val <caret>foo: Int = 1
|
|
} |