aboutsummaryrefslogtreecommitdiff
path: root/tests/run/StackMap.scala
blob: 5220758fe923be87a49d94a7de022ea7c5b11ce7 (plain) (blame)
1
2
3
4
5
6
7
object Test {
  var implicitsCache = null
  
  def main(args: Array[String]): Unit = {
     implicitsCache = try{null} catch { case ex: Exception => null }
  }
}