Files
kotlin-fork/jps-plugin/testData/incremental/traitClassObjectConstantChanged/const.kt
T
Evgeny Gerashchenko 42cba1cc3c Ignoring not static final fields.
Added tests with class object of trait and val inside object.
2014-07-07 17:41:39 +04:00

9 lines
164 B
Kotlin

package test
trait Trait {
class object {
// Old and new constant values are different, but their hashes are the same
val CONST = "BF"
}
}