aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/pos/t2797.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untried/pos/t2797.scala')
-rw-r--r--tests/untried/pos/t2797.scala9
1 files changed, 0 insertions, 9 deletions
diff --git a/tests/untried/pos/t2797.scala b/tests/untried/pos/t2797.scala
deleted file mode 100644
index cf579d8de..000000000
--- a/tests/untried/pos/t2797.scala
+++ /dev/null
@@ -1,9 +0,0 @@
-class MyVector[A] {
- def map[B](f: A => B): MyVector[B] = sys.error("")
-}
-
-object Test {
- def unzip[B, C](_this: MyVector[(B, C)]): (MyVector[B], MyVector[C]) = {
- (_this.map{ bc => bc._1 }, _this.map{ bc => bc._2 })
- }
-}