aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/t1843.scala
blob: 871b21346cc20a7da0e99131b152bcafcbdbd981 (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
/**
* Scala Compiler Will Crash On this File
* ... Or Will It?
*
*/
object Crash {
  trait UpdateType[A]
  case class StateUpdate[A](updateType : UpdateType[A], value : A)
  case object IntegerUpdateType extends UpdateType[Integer]

  //However this method will cause a crash
  def crash(updates: List[StateUpdate[_]]): Unit = {
    updates match {
      case Nil =>
      case u::us =>
        u match {
          //Line below seems to be the crashing line
          case StateUpdate(key, newValue) if (key == IntegerUpdateType) =>
            println("Requires a statement to induce the crash")
          case _ =>
        }
    }
  }
}