Files
kotlin/compiler/testData/loadJava/compiledJava/annotations/AnnotatedField.java
Alexander Udalov ca8831097f Resolve annotations on Java constructors
Also add tests on custom annotations on fields and methods
2015-03-07 02:32:14 +03:00

14 lines
218 B
Java
Vendored

package test;
public class AnnotatedField {
public static @interface Anno {
String value();
}
@Anno("static")
public static final int x = 0;
@Anno("member")
public final int y = 0;
}