Files
kotlin-fork/jps-plugin/testData/incremental/pureKotlin/classObjectConstantChanged/const.kt
T
2015-10-18 22:49:08 +03:00

9 lines
174 B
Kotlin
Vendored

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