a2d644f708
#KT-9958 Fixed
16 lines
145 B
Kotlin
Vendored
16 lines
145 B
Kotlin
Vendored
package a
|
|
|
|
import b.*
|
|
|
|
class B {
|
|
companion object : A() {}
|
|
|
|
init {
|
|
foo()
|
|
}
|
|
}
|
|
|
|
fun box(): String {
|
|
B()
|
|
return result
|
|
} |