mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
17 lines
199 B
Kotlin
Vendored
17 lines
199 B
Kotlin
Vendored
const val CONST_VAL = 1
|
|
|
|
object A {
|
|
const val CONST_VAL = 2
|
|
}
|
|
|
|
class B {
|
|
companion object {
|
|
const val CONST_VAL = 2
|
|
}
|
|
}
|
|
|
|
/*
|
|
3 DEPRECATED are for getCONST_VAL
|
|
*/
|
|
|
|
// 3 DEPRECATED |