mirror of
https://github.com/github/codeql.git
synced 2026-03-25 00:47:43 +01:00
8 lines
135 B
Java
8 lines
135 B
Java
package annotations;
|
|
|
|
import java.util.List;
|
|
|
|
public class ParameterAnnotations {
|
|
void foo(@Ann(key="value") List listParameter) {}
|
|
}
|