summaryrefslogtreecommitdiff
path: root/test/files/continuations-neg/t3628.scala
blob: 3fdd32a0341d900259f3c0a48fad7998503b8489 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
import scala.actors.Actor._

object Test {
  val impl: Actor = actor {
    loop {
      react { 
        case 1 => impl ! 2
      }
    }
  }
}