9e1a771d57
Test: Existing IncrementalJvmCompilerRunnerTestGenerated.PureKotlin#testCompanionConstantChanged
and similar *.PureKotlin#testCompanionConstantChanged tests
13 lines
200 B
Kotlin
Vendored
13 lines
200 B
Kotlin
Vendored
package foo
|
|
|
|
import test.A.CompanionObject.CONSTANT_VALUE
|
|
|
|
class B {
|
|
companion object {
|
|
fun main() {
|
|
println("Import companion constant: ${CONSTANT_VALUE}")
|
|
}
|
|
|
|
}
|
|
|
|
} |