This commit is contained in:
Roman Shevchenko
2011-04-18 15:55:34 +02:00
parent 8bad5be23e
commit 370794e5f7
4 changed files with 16 additions and 18 deletions

View File

@@ -0,0 +1,14 @@
@interface Ann {
int i ();
}
class D {
int field;
@Ann(i=<error descr="Attribute value must be constant">field</error>) void foo () {}
}
@interface ManistaDouble
{
public abstract double defaultValue() default Double.NaN;
}