594e4e5c31
#KT-6946 In Progress
6 lines
275 B
Kotlin
Vendored
6 lines
275 B
Kotlin
Vendored
import org.jetbrains.annotations.PropertyKey
|
|
|
|
private val TEST_BUNDLE2 = "TestBundle2"
|
|
|
|
fun message(@PropertyKey(resourceBundle = "TestBundle2") key: String, vararg args: Any) = key
|
|
fun message2(@PropertyKey(resourceBundle = TEST_BUNDLE2) key: String, vararg args: Any) = key |