summaryrefslogtreecommitdiff
path: root/test/files/pos/trait_fields_nested_public_object.scala
blob: 016487fb8ab345908797e3b5c414841d81233a8c (plain) (blame)
1
2
3
4
5
trait NestedObj {
  object O { println("NO") }
}

class C extends NestedObj