summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/pending/run/t0607.check2
-rw-r--r--test/pending/run/t0607.scala7
2 files changed, 9 insertions, 0 deletions
diff --git a/test/pending/run/t0607.check b/test/pending/run/t0607.check
new file mode 100644
index 0000000000..a9057ea659
--- /dev/null
+++ b/test/pending/run/t0607.check
@@ -0,0 +1,2 @@
+A()
+B()
diff --git a/test/pending/run/t0607.scala b/test/pending/run/t0607.scala
new file mode 100644
index 0000000000..afc7ff9b46
--- /dev/null
+++ b/test/pending/run/t0607.scala
@@ -0,0 +1,7 @@
+object Test extends Application {
+ case class A
+ case class B extends A
+ println(A())
+ println(B())
+}
+