aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/pos/t1832.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untried/pos/t1832.scala')
-rw-r--r--tests/untried/pos/t1832.scala8
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/untried/pos/t1832.scala b/tests/untried/pos/t1832.scala
deleted file mode 100644
index 3a5280640..000000000
--- a/tests/untried/pos/t1832.scala
+++ /dev/null
@@ -1,8 +0,0 @@
-trait Cloning {
- trait Foo
- def fn(g: Any => Unit): Foo
-
- implicit def mkStar(i: Int): AnyRef{def *(a: Cloning.this.Foo): Cloning.this.Foo} = new { def *(a: Foo): Foo = null }
-
- val pool = 4 * fn { case ghostSYMBOL: Int => ghostSYMBOL * 2 }
-}