Files
kotlin/compiler/testData/codegen/bytecodeText/constValsGetterDeprecated.kt
Michael Bogdanov 18f3eb87e4 INSTANCE field deprecated in companion object
Fix for KT-9692: Deadlock between <clinit> of a class (KtSimpleNameExpressionImpl) and <clinit> of its companion object

 #KT-9692 Fixed
2015-10-23 17:39:27 +03:00

18 lines
255 B
Kotlin
Vendored

const val CONST_VAL = 1
object A {
const val CONST_VAL = 2
}
class B {
companion object {
const val CONST_VAL = 2
}
}
/*
Two DEPRECATED are for INSTANCE$ and INSTANCE temporarily
3 others are for getCONST_VAL
*/
// 5 DEPRECATED