summaryrefslogtreecommitdiff
path: root/test/files/pos/t1843.scala
blob: cc73353b75fcf0d1fd7af74e28e01ab6b0e699b6 (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
/**
* 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[_]]) {
    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 _ =>
        }
    }
  }
}