summaryrefslogblamecommitdiff
path: root/test/files/pos/bug757.scala
blob: cc6527f3f283d4850afdad6fcdf23348348b6718 (plain) (tree)
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
  }
}