summaryrefslogtreecommitdiff
path: root/test/files/pos/t9116.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t9116.scala')
-rw-r--r--test/files/pos/t9116.scala7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/files/pos/t9116.scala b/test/files/pos/t9116.scala
new file mode 100644
index 0000000000..16b04c2e6b
--- /dev/null
+++ b/test/files/pos/t9116.scala
@@ -0,0 +1,7 @@
+
+trait X {
+ List(1, 2, 3).toSet.subsets.map(_.toList) // ok now
+
+ List(1, 2, 3).toSet.subsets().map(_.toList) // now also
+ List(1, 2, 3).toSet.subsets(2).map(_.toList) // still ok
+}