summaryrefslogtreecommitdiff
path: root/test/files/run/t6969.scala
blob: c4561b4424666ee5d720fb481f5d7c6e1eb9fbe9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import scala.language.{ reflectiveCalls }

object Test {
  private type Clearable = { def clear(): Unit }
  private def choke() = {
    try new Array[Object]((Runtime.getRuntime().maxMemory min Int.MaxValue).toInt)
    catch {
      case _: OutOfMemoryError => // what do you mean, out of memory?
      case t: Throwable        => println(t)
    }
  }
  private def f(x: Clearable) = x.clear()
  class Choker(id: Int) extends Thread {
    private def g(iteration: Int) = {
      val map = scala.collection.mutable.Map[Int, Int](1 -> 2)
      try f(map) catch { case t: NullPointerException => println(s"Failed at $id/$iteration") ; throw t }
      choke()
    }
    override def run() {
      1 to 50 foreach g
    }
  }

  def main(args: Array[String]): Unit = {
    val threads = 1 to 3 map (id => new Choker(id))
    threads foreach (_.start())
    threads foreach (_.join())
    println("All threads completed.")
  }
}