ca8831097f
Also add tests on custom annotations on fields and methods
13 lines
237 B
Java
Vendored
13 lines
237 B
Java
Vendored
package test;
|
|
|
|
import java.lang.String;
|
|
import java.util.List;
|
|
|
|
public class AnnotatedValueParameter {
|
|
public static @interface Anno {
|
|
String value();
|
|
}
|
|
|
|
public void f(@Anno("non-empty") List<String> parameter) { }
|
|
}
|