Inline field/method: check for reflective usages

Fixes EA-126479 - CCE: InlineConstantFieldProcessor.inlineExpressionUsage
This commit is contained in:
Tagir Valeev
2018-09-07 16:39:01 +07:00
parent 812b56052e
commit 12b1c5a4e0
7 changed files with 64 additions and 0 deletions
@@ -0,0 +1,8 @@
class Test {
private static final int <caret>FIELD = 5;
void test() {
System.out.println(FIELD);
System.out.println(Test.class.getDeclaredField("FIELD"));
}
}