summaryrefslogtreecommitdiff
path: root/test/pending/run/reify_complex.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending/run/reify_complex.scala')
-rw-r--r--test/pending/run/reify_complex.scala31
1 files changed, 0 insertions, 31 deletions
diff --git a/test/pending/run/reify_complex.scala b/test/pending/run/reify_complex.scala
deleted file mode 100644
index aae4d558cf..0000000000
--- a/test/pending/run/reify_complex.scala
+++ /dev/null
@@ -1,31 +0,0 @@
-import scala.tools.nsc.reporters._
-import scala.tools.nsc.Settings
-import reflect.runtime.Mirror.ToolBox
-
-object Test extends App {
- val code = scala.reflect.Code.lift{
- class Complex(val re: Double, val im: Double) {
- def + (that: Complex) =
- new Complex(re + that.re, im + that.im)
- def - (that: Complex) =
- new Complex(re - that.re, im - that.im)
- def * (that: Complex) =
- new Complex(re * that.re - im * that.im,
- re * that.im + im * that.re)
- def / (that: Complex) = {
- val denom = that.re * that.re + that.im * that.im
- new Complex((re * that.re + im * that.im) / denom,
- (im * that.re - re * that.im) / denom)
- }
- override def toString =
- re + (if (im < 0) "-" + (-im) else "+" + im) + "*i"
- }
- val x = new Complex(2, 1); val y = new Complex(1, 3)
- println(x + y)
- };
-
- val reporter = new ConsoleReporter(new Settings)
- val toolbox = new ToolBox(reporter)
- val ttree = toolbox.typeCheck(code.tree)
- toolbox.runExpr(ttree)
-}