aboutsummaryrefslogblamecommitdiff
path: root/tests/pos/t1843.scala
blob: 871b21346cc20a7da0e99131b152bcafcbdbd981 (plain) (tree)
1
2
3
4
5
6
7
8




                                        
              

                                                                  















                                                                          
/**
* 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 _ =>
        }
    }
  }
}