summaryrefslogtreecommitdiff
path: root/plugins/kotlin/jps/jps-plugin/tests/testData/incremental/pureKotlin/traitClassObjectConstantChanged/const.kt.new
blob: 67d312249e966d5bae675472b07cf908963c3430 (plain)
1
2
3
4
5
6
7
8
package test

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