summaryrefslogtreecommitdiff
path: root/test/files/pos/bug757.scala
blob: f722128acc210f144af5a43c07af0a950d525c15 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
package foo { 
  object C {
    def foo {
      Console.println("foo")
    }
  }
}

package bar { 
  object Main extends Application {
    foo.C.foo
  }
}