summaryrefslogtreecommitdiff
path: root/test/files/pos/t1722
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2009-10-07 17:07:27 +0000
committerPaul Phillips <paulp@improving.org>2009-10-07 17:07:27 +0000
commit6b31849b85532946cb90b2552cb451b58dbd884d (patch)
tree6c343195529c27d43710ae14f77ffc079ccc3ebb /test/files/pos/t1722
parent9f121f57e034a7feb07bad7f67403f3ac75b46d4 (diff)
downloadscala-6b31849b85532946cb90b2552cb451b58dbd884d.tar.gz
scala-6b31849b85532946cb90b2552cb451b58dbd884d.tar.bz2
scala-6b31849b85532946cb90b2552cb451b58dbd884d.zip
Moved a pile of passing tests from pending to f...
Moved a pile of passing tests from pending to files, fixed some untesty tests, and will now close the associated tickets.
Diffstat (limited to 'test/files/pos/t1722')
-rwxr-xr-xtest/files/pos/t1722/C.scala9
-rwxr-xr-xtest/files/pos/t1722/Test.scala4
-rwxr-xr-xtest/files/pos/t1722/Top.scala13
3 files changed, 26 insertions, 0 deletions
diff --git a/test/files/pos/t1722/C.scala b/test/files/pos/t1722/C.scala
new file mode 100755
index 0000000000..2695296292
--- /dev/null
+++ b/test/files/pos/t1722/C.scala
@@ -0,0 +1,9 @@
+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
+*/
diff --git a/test/files/pos/t1722/Test.scala b/test/files/pos/t1722/Test.scala
new file mode 100755
index 0000000000..4cba7ab01b
--- /dev/null
+++ b/test/files/pos/t1722/Test.scala
@@ -0,0 +1,4 @@
+package t1722
+object Test {
+ val x = new AnyRef with C
+}
diff --git a/test/files/pos/t1722/Top.scala b/test/files/pos/t1722/Top.scala
new file mode 100755
index 0000000000..4ac52412aa
--- /dev/null
+++ b/test/files/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.
+*/