register local refs to java if references are registered in literal expression by foreign contributor (e.g. reflection, data providers, etc) (IDEA-171495)

This commit is contained in:
Anna.Kozlova
2017-04-21 20:03:27 +02:00
parent 85cdf34c8a
commit d680d55c99
3 changed files with 17 additions and 0 deletions
@@ -0,0 +1,7 @@
class MyTest {
public static void main(String[] args) throws Throwable {
MyTest.class.getMethod("abcdef");
}
private void abcdef() {}
}