summaryrefslogtreecommitdiff
path: root/test/files/pos
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos')
-rw-r--r--test/files/pos/t4173.scala4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/files/pos/t4173.scala b/test/files/pos/t4173.scala
new file mode 100644
index 0000000000..33a713191a
--- /dev/null
+++ b/test/files/pos/t4173.scala
@@ -0,0 +1,4 @@
+object t4173 {
+ def bar(a: Int = 0, b: Int = 0)(cs: Any*) = ()
+ bar(b = 1)(Nil: _*)
+}