ca8831097f
Also add tests on custom annotations on fields and methods
11 lines
183 B
Java
Vendored
11 lines
183 B
Java
Vendored
package test;
|
|
|
|
public class AnnotatedConstructor {
|
|
public static @interface Anno {
|
|
String value();
|
|
}
|
|
|
|
@Anno("constructor")
|
|
public AnnotatedConstructor() { }
|
|
}
|