From b5865cd83f2e8871c746acd1e7a907058b417989 Mon Sep 17 00:00:00 2001 From: Paul Phillips Date: Fri, 29 Jul 2011 22:02:24 +0000 Subject: Moved test out of pending, closes SI-3628, no r... Moved test out of pending, closes SI-3628, no review. --- test/files/continuations-neg/t3628.check | 4 ++++ test/files/continuations-neg/t3628.scala | 11 +++++++++++ test/pending/continuations-neg/t3628.check | 3 --- test/pending/continuations-neg/t3628.scala | 11 ----------- 4 files changed, 15 insertions(+), 14 deletions(-) create mode 100644 test/files/continuations-neg/t3628.check create mode 100644 test/files/continuations-neg/t3628.scala delete mode 100644 test/pending/continuations-neg/t3628.check delete mode 100644 test/pending/continuations-neg/t3628.scala diff --git a/test/files/continuations-neg/t3628.check b/test/files/continuations-neg/t3628.check new file mode 100644 index 0000000000..6e390558ef --- /dev/null +++ b/test/files/continuations-neg/t3628.check @@ -0,0 +1,4 @@ +t3628.scala:4: error: not found: type Actor + val impl: Actor = actor { + ^ +one error found diff --git a/test/files/continuations-neg/t3628.scala b/test/files/continuations-neg/t3628.scala new file mode 100644 index 0000000000..c56e7752c4 --- /dev/null +++ b/test/files/continuations-neg/t3628.scala @@ -0,0 +1,11 @@ +import scala.actors.Actor._ + +object Test { + val impl: Actor = actor { + loop { + react { + case 1 => impl ! 2 + } + } + } +} diff --git a/test/pending/continuations-neg/t3628.check b/test/pending/continuations-neg/t3628.check deleted file mode 100644 index 4df94cdfcc..0000000000 --- a/test/pending/continuations-neg/t3628.check +++ /dev/null @@ -1,3 +0,0 @@ -ending/continuations-neg/t3628.scala:4: error: not found: type Actor - val impl: Actor = actor { - ^ diff --git a/test/pending/continuations-neg/t3628.scala b/test/pending/continuations-neg/t3628.scala deleted file mode 100644 index c56e7752c4..0000000000 --- a/test/pending/continuations-neg/t3628.scala +++ /dev/null @@ -1,11 +0,0 @@ -import scala.actors.Actor._ - -object Test { - val impl: Actor = actor { - loop { - react { - case 1 => impl ! 2 - } - } - } -} -- cgit v1.2.3