summaryrefslogtreecommitdiff
path: root/test/files/scalap/packageObject/result.test
blob: 324992aae16723375202f486479af950d22336ce (plain) (blame)
1
2
3
4
5
6
package object PackageObject extends java.lang.Object with scala.ScalaObject {
  def this() = { /* compiled code */ }
  type A = scala.Predef.String
  def foo(i : scala.Int) : scala.Int = { /* compiled code */ }
  protected def readResolve() : java.lang.Object = { /* compiled code */ }
}