summaryrefslogtreecommitdiff
path: root/test/pos/bug199.scala
blob: 153e999e1730fe62a506b728b4d8790663b72d66 (plain) (blame)
1
2
3
4
5
6
7
class C { object o; }

object objectInClass {
  def main(args: Array[String]) = {
    (new C).o; ()
  }
}