Private visibility for non-const, non-jvmField class companion property backing field

Original commit: e116cc3206
This commit is contained in:
Michael Bogdanov
2015-12-25 15:05:31 +03:00
parent eafea73638
commit 0218b84990
25 changed files with 163 additions and 6 deletions
@@ -0,0 +1,9 @@
package test
class Klass {
companion object {
// Old and new constant values are different, but their hashes are the same
@JvmField
val CONST = "Ae"
}
}