18 lines
231 B
Kotlin
Vendored
18 lines
231 B
Kotlin
Vendored
// IGNORE_BACKEND: JS_IR
|
|
// EXPECTED_REACHABLE_NODES: 1114
|
|
package foo
|
|
|
|
class A {
|
|
val x: String
|
|
|
|
constructor() {
|
|
}
|
|
|
|
init {
|
|
val o = "O"
|
|
fun baz() = o + "K"
|
|
x = baz()
|
|
}
|
|
}
|
|
|
|
fun box() = A().x |