mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 10:51:06 +07:00
12 lines
332 B
Java
12 lines
332 B
Java
class Dummy {
|
|
|
|
public @interface Debug {
|
|
String value() default "[no comment]";
|
|
}
|
|
|
|
private static final class Constants {
|
|
private static final String INPUT = "Input";
|
|
}
|
|
|
|
<error descr="Annotations are not allowed here">@Dummy.Debug(Constants.INPUT)</error><EOLError descr="Identifier or type expected"></EOLError>
|
|
} |