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

7 lines
184 B
Java
Vendored

import org.jetbrains.annotations.PropertyKey;
class J {
static String message(@PropertyKey(resourceBundle = "TestBundle") String key, Object... args) {
return key;
}
}