mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 09:20:53 +07:00
15 lines
287 B
Java
15 lines
287 B
Java
@interface Ann {
|
|
int u () default 0;
|
|
}
|
|
|
|
@Ann(<error descr="Cannot find method 'value'">0</error>) class D {
|
|
}
|
|
|
|
@In(""<error descr="Annotation attribute must be of the form 'name=value'">,</error> create = "")
|
|
class ZZZ {
|
|
}
|
|
@interface In {
|
|
String value();
|
|
String create();
|
|
}
|