summaryrefslogtreecommitdiff
path: root/test/files/run/bugs.scala
diff options
context:
space:
mode:
authormihaylov <mihaylov@epfl.ch>2006-10-08 09:07:41 +0000
committermihaylov <mihaylov@epfl.ch>2006-10-08 09:07:41 +0000
commit6a20eed594c346790b6da5da4be243dd581927d3 (patch)
treef6656dd3bdf452428b44b2b5f663b51d23fb3b93 /test/files/run/bugs.scala
parent42dc44dd5235cbe30bc52dcaa360bdccb50b87cd (diff)
downloadscala-6a20eed594c346790b6da5da4be243dd581927d3.tar.gz
scala-6a20eed594c346790b6da5da4be243dd581927d3.tar.bz2
scala-6a20eed594c346790b6da5da4be243dd581927d3.zip
Moved scala.runtime.compat to scala.compat
Diffstat (limited to 'test/files/run/bugs.scala')
-rw-r--r--test/files/run/bugs.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/bugs.scala b/test/files/run/bugs.scala
index fc9c735ec9..165be165d6 100644
--- a/test/files/run/bugs.scala
+++ b/test/files/run/bugs.scala
@@ -454,7 +454,7 @@ object Test {
test;
} catch {
case exception => {
- val curr: String = scala.runtime.compat.Platform.currentThread.toString();
+ val curr: String = compat.Platform.currentThread.toString();
Console.print("Exception in thread \"" + curr + "\" " + exception);
Console.println;
errors = errors + 1;