Files
kotlin-fork/idea/testData/findUsages/propertyFiles/propertyFileUsages.1.kt
T
2015-09-25 17:17:59 +03:00

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