mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 08:31:26 +00:00
20 lines
314 B
Kotlin
Vendored
20 lines
314 B
Kotlin
Vendored
const val CONST_VAL = 1
|
|
|
|
object A {
|
|
const val CONST_VAL = 2
|
|
}
|
|
|
|
class B {
|
|
companion object {
|
|
const val CONST_VAL = 2
|
|
}
|
|
}
|
|
|
|
/*
|
|
One DEPRECATED is for _DefaultPackage
|
|
One is for _DefaultPackage.getCONST_VAL
|
|
3 others are for getCONST_VAL
|
|
One more for INSTANCE$ temporarily
|
|
*/
|
|
|
|
// 6 DEPRECATED |