aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/neg/t0259.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untried/neg/t0259.scala')
-rw-r--r--tests/untried/neg/t0259.scala6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/untried/neg/t0259.scala b/tests/untried/neg/t0259.scala
new file mode 100644
index 000000000..29aef7011
--- /dev/null
+++ b/tests/untried/neg/t0259.scala
@@ -0,0 +1,6 @@
+package test;
+class TestCase3() {
+ def this( groups: (String, Int)*) = this()
+ def this( groups: String*) = this()
+}
+object Main extends TestCase3 with App