summaryrefslogtreecommitdiff
path: root/plugins/kotlin/jps/jps-plugin/tests/testData/incremental/withJava/kotlinUsedInJava/jvmFieldChanged/const.kt
blob: f5d8342d49112f3d65099a41ddc04844b315fe64 (plain)
1
2
3
4
5
6
7
8
9
package test

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