EA-87016 - assert: PsiParameterListImpl.getParameterIndex

This commit is contained in:
Anna Kozlova
2016-09-01 16:38:42 +03:00
parent c030a5a060
commit 50e1965c91
4 changed files with 49 additions and 1 deletions
@@ -0,0 +1,21 @@
class Test {
abstract class U {
{
final int[] args = new int[8];
Runnable a = new Runnable() {
{
for (int arg : args) {
System.out.println(arg);
}
}
@Override
public void run() {
}
};
}
}
}