aboutsummaryrefslogblamecommitdiff
path: root/tests/run/t8133/B_2.scala
blob: b80e10952d14ba36da140fabde381cc7b569c729 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15














                                         
package pkg { 
  package object other
  package other {
    class Crash { 
      AnyOps(0)
      ()
    }
  }
}
 
object Test {
  def main(args: Array[String]): Unit = {
    new pkg.other.Crash
  }
}