summaryrefslogtreecommitdiff
path: root/test/pending/run/reify_complex.scala
diff options
context:
space:
mode:
authorAleksandar Prokopec <axel22@gmail.com>2012-02-16 13:34:06 +0100
committerAleksandar Prokopec <axel22@gmail.com>2012-02-16 13:34:06 +0100
commit53b05bb12f5a7a50448bcac9434389bf95273c45 (patch)
treed10140f4a3f2ea46dd39b47828c1326e9a61681e /test/pending/run/reify_complex.scala
parentf2ccb43a844e484ae511c8cff3fbf534a0d86ebe (diff)
parent91148376049a152edec12348ff9b7e9e93e6ebe1 (diff)
downloadscala-53b05bb12f5a7a50448bcac9434389bf95273c45.tar.gz
scala-53b05bb12f5a7a50448bcac9434389bf95273c45.tar.bz2
scala-53b05bb12f5a7a50448bcac9434389bf95273c45.zip
Merge branch 'master' into execution-context
Conflicts: src/library/scala/package.scala
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)
-}