summaryrefslogtreecommitdiff
path: root/test/files/pos
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2011-02-14 03:43:35 +0000
committerPaul Phillips <paulp@improving.org>2011-02-14 03:43:35 +0000
commit00384916e0874f450bc00f9a1409850586f5b89a (patch)
tree3af02572d1627ec8a4fd39e7996dee60d3bca3a0 /test/files/pos
parentc7f0ca2897836271030cf3be0fa3c6892ea89969 (diff)
downloadscala-00384916e0874f450bc00f9a1409850586f5b89a.tar.gz
scala-00384916e0874f450bc00f9a1409850586f5b89a.tar.bz2
scala-00384916e0874f450bc00f9a1409850586f5b89a.zip
Test case closes #4173. No review.
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: _*)
+}