summaryrefslogtreecommitdiff
path: root/test/pending/run/t0807.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending/run/t0807.scala')
-rw-r--r--test/pending/run/t0807.scala5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/pending/run/t0807.scala b/test/pending/run/t0807.scala
new file mode 100644
index 0000000000..e69aa1c71c
--- /dev/null
+++ b/test/pending/run/t0807.scala
@@ -0,0 +1,5 @@
+trait A
+trait B extends A { val x = println("early") }
+object Test extends Application {
+ new B {}
+}