summaryrefslogtreecommitdiff
path: root/test/files/neg/t9382.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/neg/t9382.scala')
-rw-r--r--test/files/neg/t9382.scala6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/files/neg/t9382.scala b/test/files/neg/t9382.scala
new file mode 100644
index 0000000000..19703525e4
--- /dev/null
+++ b/test/files/neg/t9382.scala
@@ -0,0 +1,6 @@
+
+trait T {
+ def f = (List(1,2,3), List(4,5,6)).x
+ def g = (List(1,2,3), List(4,5,6), List(7,8,9)).x
+ def huh = (1,2).x
+}