From e670a7bb766e06c6b3f7e1b8e0a61c2bc99aa165 Mon Sep 17 00:00:00 2001 From: Lex Spoon Date: Mon, 19 Jun 2006 12:26:59 +0000 Subject: *** empty log message *** --- test/pending/run/impconvtimes.scala | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 test/pending/run/impconvtimes.scala (limited to 'test/pending/run/impconvtimes.scala') diff --git a/test/pending/run/impconvtimes.scala b/test/pending/run/impconvtimes.scala new file mode 100644 index 0000000000..a69610b94a --- /dev/null +++ b/test/pending/run/impconvtimes.scala @@ -0,0 +1,17 @@ +object Test { + abstract class Unit + object NoUnit extends Unit + object Hour extends Unit + + case class Measure(scalar: Double, unit: Unit) { + def *(newUnit: Unit) = Measure(scalar, newUnit) + } + + implicit def double2Measure(scalar: Double) = + Measure(scalar, NoUnit) + + + def main(args: Array[String]): scala.Unit = { + Console.println("3.0 * Hour = " + (3.0 * Hour)) + } +} -- cgit v1.2.3