summaryrefslogtreecommitdiff
path: root/test/files/neg/t5760-pkgobj-warn/stalepkg_1.scala
blob: ed4b731bb06b390d6bc436064cbd663d8b24131b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
package object stalepkg {
  class Foo
}

package stalepkg {
  object Test {
    def main(args: Array[String]) {
    }
  }
}