5af4101f7d
#KT-6946 In Progress
10 lines
386 B
Kotlin
Vendored
10 lines
386 B
Kotlin
Vendored
import org.jetbrains.annotations.PropertyKey
|
|
|
|
private val BUNDLE_NAME = "idea.testData.findUsages.propertyFiles.propertyFileUsages.0"
|
|
|
|
public fun message(@PropertyKey(resourceBundle = "idea.testData.findUsages.propertyFiles.propertyFileUsages.0") key: String) = key
|
|
public fun message2(@PropertyKey(resourceBundle = BUNDLE_NAME) key: String) = key
|
|
|
|
fun test() {
|
|
message("foo.bar")
|
|
} |