Files
kotlin/compiler/testData/codegen/boxInline/private/accessorForConst.2.kt

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"
}
}