mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-09 16:39:37 +07:00
isReifiable should not check outer class type params for static inners
This commit is contained in:
@@ -144,4 +144,9 @@ class Outer<E> {
|
||||
final Inner[] i = <error descr="Generic array creation">new Inner[10]</error>;
|
||||
class Inner {
|
||||
}
|
||||
}
|
||||
class Outer1<E> {
|
||||
final Inner[] i = new Inner[10];
|
||||
static class Inner {
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user