summaryrefslogtreecommitdiff
path: root/test/files/pos/bcode_throw_null/TN.scala
blob: ed38b59baef4e94f284d63a3af64f578b1811932 (plain) (blame)
1
2
3
4
5
6
7
object TN {

  def pre1(b: Boolean) {
    println(if (b) 1 else throw null)
  }

}