Files
kotlin-fork/idea/testData/multiFileInspections/invalidBundleOrProperty/before/unresolvedBundleReference.kt
T
2015-09-25 17:18:01 +03:00

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