highlight inaccessible array component type (IDEA-165434)

This commit is contained in:
Anna.Kozlova
2016-12-14 18:40:27 +01:00
parent 08f38405ad
commit 9544b4c809
3 changed files with 32 additions and 8 deletions
@@ -0,0 +1,7 @@
package b;
class C {
{
int u = a.B.getAs().<error descr="Cannot access 'length' in '_Dummy_.__Array__'">length</error>;
a.B.getAs().<error descr="Cannot access 'clone()' in '_Dummy_.__Array__'">clone</error>();
}
}