aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/i873.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pos/i873.scala')
-rw-r--r--tests/pos/i873.scala4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/pos/i873.scala b/tests/pos/i873.scala
new file mode 100644
index 000000000..71c8a3959
--- /dev/null
+++ b/tests/pos/i873.scala
@@ -0,0 +1,4 @@
+object Test {
+ def call(k: (Int, Int) => Unit): Unit = ???
+ def test = call({ case (x, y) => ()})
+}