7 lines
101 B
Kotlin
Vendored
7 lines
101 B
Kotlin
Vendored
object Obj {
|
|
const val O = "O"
|
|
val concat = "${O}K"
|
|
}
|
|
|
|
@Deprecated("${Obj.O}/{id}")
|
|
class Foo |