mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-19 13:18:46 +07:00
a35a9f91ba
GitOrigin-RevId: 6fdb6e2f397280cf4795cbd09ddcc1461a5897ff
15 lines
301 B
Java
15 lines
301 B
Java
@interface Ann {
|
|
int u () default 0;
|
|
}
|
|
|
|
@Ann(<error descr="Cannot find @interface method 'value()'">0</error>) class D {
|
|
}
|
|
|
|
@In(<error descr="Annotation attribute of the form 'name=value' expected">""</error>, create = "")
|
|
class ZZZ {
|
|
}
|
|
@interface In {
|
|
String value();
|
|
String create();
|
|
}
|