aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/pos/unapplyComplex.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untried/pos/unapplyComplex.scala')
-rw-r--r--tests/untried/pos/unapplyComplex.scala8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/untried/pos/unapplyComplex.scala b/tests/untried/pos/unapplyComplex.scala
index 148fcc1bb..8e0fe7821 100644
--- a/tests/untried/pos/unapplyComplex.scala
+++ b/tests/untried/pos/unapplyComplex.scala
@@ -14,26 +14,26 @@ 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)))
+ 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)))
+ 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)
+ 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)
+ Console.println("re"+re+" im"+im)
}
}
}