aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/pos/unapplyComplex.scala
diff options
context:
space:
mode:
authorSamuel Gruetter <samuel.gruetter@epfl.ch>2014-03-12 22:44:33 +0100
committerSamuel Gruetter <samuel.gruetter@epfl.ch>2014-03-12 22:44:33 +0100
commit9ef5f6817688f814a3450126aa7383b0928e80a0 (patch)
tree5727a2f7f7fd665cefdb312af2785c692f04377c /tests/untried/pos/unapplyComplex.scala
parent194be919664447631ba55446eb4874979c908d27 (diff)
downloaddotty-9ef5f6817688f814a3450126aa7383b0928e80a0.tar.gz
dotty-9ef5f6817688f814a3450126aa7383b0928e80a0.tar.bz2
dotty-9ef5f6817688f814a3450126aa7383b0928e80a0.zip
add tests from scala/test/files/{pos,neg}
with explicit Unit return type
Diffstat (limited to 'tests/untried/pos/unapplyComplex.scala')
-rw-r--r--tests/untried/pos/unapplyComplex.scala39
1 files changed, 39 insertions, 0 deletions
diff --git a/tests/untried/pos/unapplyComplex.scala b/tests/untried/pos/unapplyComplex.scala
new file mode 100644
index 000000000..148fcc1bb
--- /dev/null
+++ b/tests/untried/pos/unapplyComplex.scala
@@ -0,0 +1,39 @@
+trait Complex extends Product2[Double, Double] {
+ def canEqual(other: Any) = other.isInstanceOf[Complex]
+}
+
+class ComplexRect(val _1: Double, val _2: Double) extends Complex {
+ override def toString = "ComplexRect("+_1+","+_2+")"
+}
+
+class ComplexPolar(val _1: Double, val _2: Double) extends Complex {
+ override def toString = "ComplexPolar("+_1+","+_2+")"
+}
+
+object ComplexRect {
+ def unapply(z:Complex): Option[Complex] = {
+ if(z.isInstanceOf[ComplexRect]) Some(z) else z match {
+ case ComplexPolar(mod, arg) =>
+ Some(new ComplexRect(mod*math.cos(arg), mod*math.sin(arg)))
+} } }
+
+object ComplexPolar {
+ def unapply(z:Complex): Option[Complex] = {
+ if(z.isInstanceOf[ComplexPolar]) Some(z) else z match {
+ case ComplexRect(re,im) =>
+ Some(new ComplexPolar(math.sqrt(re*re + im*im), math.atan(re/im)))
+} } }
+
+object Test {
+ def main(args:Array[String]) = {
+ new ComplexRect(1,1) match {
+ case ComplexPolar(mod,arg) => // z @ ???
+ Console.println("mod"+mod+"arg"+arg)
+ }
+ val Komplex = ComplexRect
+ new ComplexPolar(math.sqrt(2),math.Pi / 4.0) match {
+ case Komplex(re,im) => // z @ ???
+ Console.println("re"+re+" im"+im)
+ }
+ }
+}