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

7 lines
108 B
Kotlin
Vendored

package test
class A {
companion object CompanionObject {
const val CONSTANT_VALUE = 16
}
}