Files
kotlin-fork/jps-plugin/testData/incremental/pureKotlin/traitClassObjectConstantChanged/const.kt
T

9 lines
178 B
Kotlin
Vendored

package test
interface Trait {
companion object {
// Old and new constant values are different, but their hashes are the same
const val CONST = "BF"
}
}