ba0b21d1a3
Also eliminate unnecessary object instance references on Java call sites #KT-20095 Fixed
10 lines
126 B
Kotlin
Vendored
10 lines
126 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
// IS_APPLICABLE: false
|
|
|
|
interface I {
|
|
val foo: Int
|
|
}
|
|
|
|
object Test : I {
|
|
override val <caret>foo = 1
|
|
} |