summaryrefslogtreecommitdiff
path: root/test/files/pos/local-objects.scala
blob: ed7c50ead9785a60c5340347bfa45bc248715aab (plain) (blame)
1
2
3
4
5
6
7
8
9
object Main {
 val x = {
   object Boo
   Boo
 }
}