e0e1d57120
#KT-58717 Fixed
17 lines
237 B
Kotlin
Vendored
17 lines
237 B
Kotlin
Vendored
// !LANGUAGE: +IntrinsicConstEvaluation
|
|
// TARGET_BACKEND: JVM_IR
|
|
var result = "Fail"
|
|
|
|
object O {
|
|
fun foo() {}
|
|
|
|
init {
|
|
result = "OK"
|
|
}
|
|
}
|
|
|
|
fun box(): String {
|
|
O::foo.<!EVALUATED("foo")!>name<!>
|
|
return result
|
|
}
|