summaryrefslogtreecommitdiff
path: root/test/files/scalap/packageObject.check
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/scalap/packageObject.check')
-rw-r--r--test/files/scalap/packageObject.check5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/files/scalap/packageObject.check b/test/files/scalap/packageObject.check
new file mode 100644
index 0000000000..5732d92958
--- /dev/null
+++ b/test/files/scalap/packageObject.check
@@ -0,0 +1,5 @@
+package object PackageObject extends scala.AnyRef {
+ def this() = { /* compiled code */ }
+ type A = scala.Predef.String
+ def foo(i : scala.Int) : scala.Int = { /* compiled code */ }
+}