testdata for IDEA-57348

This commit is contained in:
anna
2012-10-23 21:08:49 +02:00
parent 6cee706093
commit 3358b8fc43
2 changed files with 9 additions and 0 deletions
@@ -0,0 +1,8 @@
class A<T> {
class B{}
}
class C<T> extends A<T> {
{
B[] o = <error descr="Generic array creation">{}</error>;
}
}