10 lines
116 B
Kotlin
Vendored
10 lines
116 B
Kotlin
Vendored
package test
|
|
|
|
const val CONST = "foo"
|
|
|
|
class Klass {
|
|
companion object {
|
|
const val CONST = "bar"
|
|
}
|
|
}
|