IDEA-199491 PsiInvalidElementAccessException on completion

This commit is contained in:
peter
2018-09-26 13:25:41 +02:00
parent 1363ec1f9b
commit f0ca8898ab
4 changed files with 32 additions and 4 deletions
@@ -0,0 +1,12 @@
class X {
Column[] c = new Column[]{
new RepositoryItem20Col<caret>umnBase() {
void foo() {
}
}
};
private static abstract class RepositoryItem20ColumnBase extends Column { }
static class Column { }
}
@@ -0,0 +1,12 @@
class X {
Column[] c = new Column[]{
new RepositoryItem20ColumnBase()<caret>umnBase() {
void foo() {
}
}
};
private static abstract class RepositoryItem20ColumnBase extends Column { }
static class Column { }
}