mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 00:21:32 +00:00
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
|
|
} |