aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/pos/overzealous-assert-genbcode.scala
blob: 82be359d9f298056d1e3a429d7f4535c1e9be898 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
object Test {

  def main(args: Array[String]): Unit = {
    args(0) match {
      case a: String => while(a == null) {}
    }
  }

}