aboutsummaryrefslogtreecommitdiff
path: root/annotation-file-utilities/tests/Varargs.java
diff options
context:
space:
mode:
Diffstat (limited to 'annotation-file-utilities/tests/Varargs.java')
-rw-r--r--annotation-file-utilities/tests/Varargs.java16
1 files changed, 16 insertions, 0 deletions
diff --git a/annotation-file-utilities/tests/Varargs.java b/annotation-file-utilities/tests/Varargs.java
new file mode 100644
index 0000000..b1ff4a4
--- /dev/null
+++ b/annotation-file-utilities/tests/Varargs.java
@@ -0,0 +1,16 @@
+package annotator.tests;
+
+public class Varargs {
+
+ public void m1(String ... params) {
+ }
+
+ public void m2(String ... params) {
+ }
+
+ public void m3(String ... params) {
+ }
+
+ public void m4(Comparable<String> ... params) {
+ }
+}