summaryrefslogtreecommitdiff
path: root/test/pending
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending')
-rw-r--r--test/pending/run/retsynch.check1
-rw-r--r--test/pending/run/retsynch.scala11
2 files changed, 0 insertions, 12 deletions
diff --git a/test/pending/run/retsynch.check b/test/pending/run/retsynch.check
deleted file mode 100644
index 8c40598f93..0000000000
--- a/test/pending/run/retsynch.check
+++ /dev/null
@@ -1 +0,0 @@
-abs(-5) = 5
diff --git a/test/pending/run/retsynch.scala b/test/pending/run/retsynch.scala
deleted file mode 100644
index d6398cf28e..0000000000
--- a/test/pending/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))
- }
-}