summaryrefslogtreecommitdiff
path: root/test/pending/run
diff options
context:
space:
mode:
authorLex Spoon <lex@lexspoon.org>2006-06-22 14:05:52 +0000
committerLex Spoon <lex@lexspoon.org>2006-06-22 14:05:52 +0000
commit6e372ca4770ff87d81ceb540b87a1f66fc1055aa (patch)
tree41c9f2401129da13d2eb2d08da80a99e9d9ed846 /test/pending/run
parent511aa6f2e4103d2742259902c0b1825a9c9650e1 (diff)
downloadscala-6e372ca4770ff87d81ceb540b87a1f66fc1055aa.tar.gz
scala-6e372ca4770ff87d81ceb540b87a1f66fc1055aa.tar.bz2
scala-6e372ca4770ff87d81ceb540b87a1f66fc1055aa.zip
tweaked the output and the check file
Diffstat (limited to 'test/pending/run')
-rw-r--r--test/pending/run/impconvtimes.scala17
1 files changed, 0 insertions, 17 deletions
diff --git a/test/pending/run/impconvtimes.scala b/test/pending/run/impconvtimes.scala
deleted file mode 100644
index a69610b94a..0000000000
--- a/test/pending/run/impconvtimes.scala
+++ /dev/null
@@ -1,17 +0,0 @@
-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))
- }
-}