summaryrefslogtreecommitdiff
path: root/test/pending/pos/t1832.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending/pos/t1832.scala')
-rw-r--r--test/pending/pos/t1832.scala10
1 files changed, 0 insertions, 10 deletions
diff --git a/test/pending/pos/t1832.scala b/test/pending/pos/t1832.scala
deleted file mode 100644
index bca863f4bd..0000000000
--- a/test/pending/pos/t1832.scala
+++ /dev/null
@@ -1,10 +0,0 @@
-// Edit by paulp: reduced.
-trait Cloning {
- trait Foo
- def fn(g: Int => Unit): Foo
-
- implicit def mkStar(i: Int) = new { def *(a: Foo): Foo = null }
-
- val pool1 = 4 * fn { case i => i * 2 }
- val pool2 = 4 * fn { case i: Int => i * 2 }
-}