12 lines
163 B
Kotlin
Vendored
12 lines
163 B
Kotlin
Vendored
package foo
|
|
|
|
import test.A
|
|
|
|
class C {
|
|
companion object {
|
|
fun main() {
|
|
println("Companion constant: ${A.CONSTANT_VALUE}")
|
|
}
|
|
}
|
|
|
|
} |