summaryrefslogtreecommitdiff
path: root/test/files/neg
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2008-07-21 15:31:03 +0000
committerMartin Odersky <odersky@gmail.com>2008-07-21 15:31:03 +0000
commitb894f804ad22bc1c16610785f34b62efcea4a514 (patch)
tree1687efce0bae26cfe83a572a9ddd491a8aab3cde /test/files/neg
parentaeb29ddfbb4ed2000c6e8ed2bc80619e2c157aff (diff)
downloadscala-b894f804ad22bc1c16610785f34b62efcea4a514.tar.gz
scala-b894f804ad22bc1c16610785f34b62efcea4a514.tar.bz2
scala-b894f804ad22bc1c16610785f34b62efcea4a514.zip
added Iterator.flatten method; refactoring: clo...
added Iterator.flatten method; refactoring: closure -> baseTypeSeq
Diffstat (limited to 'test/files/neg')
-rw-r--r--test/files/neg/bug987.check6
-rw-r--r--test/files/neg/t0152.check4
2 files changed, 5 insertions, 5 deletions
diff --git a/test/files/neg/bug987.check b/test/files/neg/bug987.check
index 4cad622ab8..5da1e1cbe3 100644
--- a/test/files/neg/bug987.check
+++ b/test/files/neg/bug987.check
@@ -1,16 +1,16 @@
bug987.scala:15: error: illegal inheritance;
class E inherits different type instances of trait B:
-B[D] and B[C]
+B[C] and B[D]
class E extends D
^
bug987.scala:20: error: illegal inheritance;
class F inherits different type instances of trait B:
-B[D] and B[C]
+B[C] and B[D]
class F extends D
^
bug987.scala:25: error: illegal inheritance;
class D inherits different type instances of trait B:
-B[D] and B[C]
+B[C] and B[D]
abstract class D extends C with B[D] {}
^
bug987.scala:25: error: type arguments [D] do not conform to trait B's type parameter bounds [T <: B[T]]
diff --git a/test/files/neg/t0152.check b/test/files/neg/t0152.check
index 84f78dc83c..391f3fbb64 100644
--- a/test/files/neg/t0152.check
+++ b/test/files/neg/t0152.check
@@ -1,6 +1,6 @@
t0152.scala:10: error: illegal inheritance;
object boom inherits different type instances of class Value:
-Value[Int] and Value[java.lang.String]
- object boom extends Value[java.lang.String]("foo") with PlusOne
+Value[java.lang.String] and Value[Int]
+ object boom extends Value[java.lang.String]("foo") with PlusOne
^
one error found