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,7 @@
class InlineMethodTest {
public void f<caret>oo(){}
void test() throws Exception {
System.out.println(InlineMethodTest.class.getDeclaredMethod("foo"));
}
}