This commit is contained in:
Roman Shevchenko
2011-04-18 18:49:30 +02:00
parent 8bad5be23e
commit 370794e5f7
4 changed files with 16 additions and 18 deletions
@@ -0,0 +1,14 @@
@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();
}