summaryrefslogtreecommitdiff
path: root/test/files/run/retsynch.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/retsynch.scala')
-rw-r--r--test/files/run/retsynch.scala11
1 files changed, 0 insertions, 11 deletions
diff --git a/test/files/run/retsynch.scala b/test/files/run/retsynch.scala
deleted file mode 100644
index d6398cf28e..0000000000
--- a/test/files/run/retsynch.scala
+++ /dev/null
@@ -1,11 +0,0 @@
-object Test {
- def abs(x:int): int = synchronized {
- if(x > 0)
- return x
- return -x
- }
-
- def main(args: Array[String]) = {
- Console.println("abs(-5) = " + abs(-5))
- }
-}