summaryrefslogtreecommitdiff
path: root/test/pending/run/t5271_3.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending/run/t5271_3.scala')
-rw-r--r--test/pending/run/t5271_3.scala10
1 files changed, 0 insertions, 10 deletions
diff --git a/test/pending/run/t5271_3.scala b/test/pending/run/t5271_3.scala
deleted file mode 100644
index 65a03ae323..0000000000
--- a/test/pending/run/t5271_3.scala
+++ /dev/null
@@ -1,10 +0,0 @@
-import scala.reflect.mirror._
-
-object Test extends App {
- reify {
- object C { def qwe = 4 }
- case class C(foo: Int, bar: Int)
- val c = C(2, 2)
- println(c.foo * c.bar == C.qwe)
- }.eval
-}