194853b5c2
Do not treat accessors to JvmStatic properties as having dispatch receiver #KT-11585 Fixed
16 lines
186 B
Kotlin
Vendored
16 lines
186 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
|
|
var result = "fail 1"
|
|
object Foo {
|
|
@JvmStatic
|
|
private val a = "OK"
|
|
|
|
fun foo() = run { result = a }
|
|
}
|
|
|
|
fun box(): String {
|
|
Foo.foo()
|
|
|
|
return result
|
|
}
|