Copy to interface just companion object public const properties

Original commit: 12afbffb09
This commit is contained in:
Michael Bogdanov
2015-10-07 18:02:02 +03:00
parent 6bbf3aaf66
commit 1ebdbd18dc
@@ -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"
}
}