From 1ebdbd18dcc8aa2a805472bb2f4b431f555ff168 Mon Sep 17 00:00:00 2001 From: Michael Bogdanov Date: Wed, 7 Oct 2015 18:02:02 +0300 Subject: [PATCH] Copy to interface just companion object public const properties Original commit: 12afbffb09bd6de654678636b1f6e2372334614b --- .../pureKotlin/traitClassObjectConstantChanged/const.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jps/jps-plugin/testData/incremental/pureKotlin/traitClassObjectConstantChanged/const.kt b/jps/jps-plugin/testData/incremental/pureKotlin/traitClassObjectConstantChanged/const.kt index 6d7566e3856..0fe79d3540c 100644 --- a/jps/jps-plugin/testData/incremental/pureKotlin/traitClassObjectConstantChanged/const.kt +++ b/jps/jps-plugin/testData/incremental/pureKotlin/traitClassObjectConstantChanged/const.kt @@ -3,6 +3,6 @@ package test interface Trait { companion object { // Old and new constant values are different, but their hashes are the same - val CONST = "BF" + const val CONST = "BF" } }