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

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