Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'tests/org.eclipse.wst.jsdt.core.tests.model/workspace/JavaSearch15/src/v1/X.js')
-rw-r--r--tests/org.eclipse.wst.jsdt.core.tests.model/workspace/JavaSearch15/src/v1/X.js14
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/org.eclipse.wst.jsdt.core.tests.model/workspace/JavaSearch15/src/v1/X.js b/tests/org.eclipse.wst.jsdt.core.tests.model/workspace/JavaSearch15/src/v1/X.js
deleted file mode 100644
index 1b52166..0000000
--- a/tests/org.eclipse.wst.jsdt.core.tests.model/workspace/JavaSearch15/src/v1/X.js
+++ /dev/null
@@ -1,14 +0,0 @@
-package v1;
-class X {
- void vargs(int a, int b) {}
- void vargs(int a, int... args) {}
- void vargs(String... args) {}
- void vargs(String str, boolean... args) {}
- void bar() {
- vargs(1, 2);
- vargs(1, 2, 3);
- vargs(1, 2, 3, 4, 5, 6);
- vargs("x", "a","'b", "c");
- vargs("x", false, true);
- }
-}

Back to the top