Files
Hung Nguyen 9e1a771d57 KT-44741: Update test data to use companion object with custom name
Test: Existing IncrementalJvmCompilerRunnerTestGenerated.PureKotlin#testCompanionConstantChanged
    and similar *.PureKotlin#testCompanionConstantChanged tests
2022-01-27 02:34:42 +03:00

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}")
}
}
}