summaryrefslogblamecommitdiff
path: root/test/files/specialized/test.scala
blob: bccc6f0f93d8ca3c3b77e755de81e8c779d1e9c7 (plain) (tree)
1
2
3
4
5
6
7
8
9
             


                                                                     
                                 

                                                                                                
   
 
object Test {
  // not sure exactly what this is enforcing, but it was failing on
  // me due to some early boxing happening with the check for a
  // stack trace suppression system property, so I boosted the count.
  def main(args: Array[String]) {
    assert(runtime.BoxesRunTime.booleanBoxCount < 10,
      "Expected no more than 10 boolean boxings, found " + runtime.BoxesRunTime.booleanBoxCount)
  }
}