IDEA-105101 Java: bad code is green: cyclic annotation element types

(JLS 9.6.1. Annotation Type Elements)
This commit is contained in:
anna
2013-04-11 13:23:48 +02:00
parent f791e0526f
commit 42763f9275
4 changed files with 47 additions and 2 deletions
@@ -1,7 +1,7 @@
import java.util.Collection;
@interface Anno {
Anno[] nested() default {};
<error descr="Cyclic annotation element type">Anno[]</error> nested() default {};
}
abstract class C {