blob: 48560e51fc28bbb0e304aa0ede354f1959d99775 [file] [log] [blame]
import org.jetbrains.annotations.*;
@SuppressWarnings({"HardCodedStringLiteral"})
class Test {
@SuppressWarnings({"HardCodedStringLiteral"})
String s = "abcdefghhijklmnop";
@SuppressWarnings({"HardCodedStringLiteral"})
void f(@PropertyKey(resourceBundle = "xxx.yyy") String key) {
String s = "abcdefghhijklmnop";
f("abcdefghhijklmnop"); //no way
}
}