aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/pos/t1722/Top.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untried/pos/t1722/Top.scala')
-rwxr-xr-xtests/untried/pos/t1722/Top.scala13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/untried/pos/t1722/Top.scala b/tests/untried/pos/t1722/Top.scala
new file mode 100755
index 000000000..4ac52412a
--- /dev/null
+++ b/tests/untried/pos/t1722/Top.scala
@@ -0,0 +1,13 @@
+package t1722
+
+sealed trait Top
+trait C {
+ private object P extends Top
+}
+/*
+$ scala -e 'new AnyRef with C'
+error: error while loading Top, class file '/private/tmp/bobobo/./Top.class' is broken
+(error reading Scala signature of /private/tmp/bobobo/./Top.class: malformed Scala signature of Top at 185; reference value P of trait C refers to nonexisting symbol.)
+one error found
+Martin: I think this has to do with children property.
+*/