Files
kotlin/compiler/testData/loadJava/compiledJava/annotations/AnnotatedConstructor.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

11 lines
183 B
Java
Vendored

package test;
public class AnnotatedConstructor {
public static @interface Anno {
String value();
}
@Anno("constructor")
public AnnotatedConstructor() { }
}