summaryrefslogtreecommitdiff
path: root/test/files/jvm/console.scala
diff options
context:
space:
mode:
authorGeoffrey Washburn <geoffrey.washburn@epfl.ch>2008-04-08 15:26:46 +0000
committerGeoffrey Washburn <geoffrey.washburn@epfl.ch>2008-04-08 15:26:46 +0000
commit93ab0ec361be4406982dd828d433a3e60a0864e3 (patch)
tree317c6eebd4f69c32de40686d0ddfe2334b5c8d6d /test/files/jvm/console.scala
parente8f9c640937df828cec892834c1197e922669bd8 (diff)
downloadscala-93ab0ec361be4406982dd828d433a3e60a0864e3.tar.gz
scala-93ab0ec361be4406982dd828d433a3e60a0864e3.tar.bz2
scala-93ab0ec361be4406982dd828d433a3e60a0864e3.zip
Move the test because it will fail on jvm1.4.
Diffstat (limited to 'test/files/jvm/console.scala')
-rw-r--r--test/files/jvm/console.scala14
1 files changed, 0 insertions, 14 deletions
diff --git a/test/files/jvm/console.scala b/test/files/jvm/console.scala
deleted file mode 100644
index b07765675c..0000000000
--- a/test/files/jvm/console.scala
+++ /dev/null
@@ -1,14 +0,0 @@
-
-/** Test scala.Console functionality. */
-object Test extends Application {
-
- import Console._
- print(true)
- print(1)
- print(1.0)
- flush
- println("..")
- println(1)
- printf("Argument nr. %d has value %1.2f\n",
- 1, 10.0/3)
-}