summaryrefslogtreecommitdiff
path: root/plugins/kotlin/jps/jps-plugin/tests/testData/incremental/withJava/kotlinUsedInJava/jvmFieldChanged/const.kt.new
blob: 247548db1f8316c0f9d668896a338b7070e617d3 (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 = "Ae"
    }
}