mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 00:21:32 +00:00
15 lines
240 B
Kotlin
Vendored
15 lines
240 B
Kotlin
Vendored
package test
|
|
|
|
class IntentionsBundle {
|
|
companion object {
|
|
internal inline fun message(): String {
|
|
return KEY + BUNDLE
|
|
}
|
|
|
|
private const val BUNDLE = "K"
|
|
protected const val KEY = "O"
|
|
}
|
|
}
|
|
|
|
|