summaryrefslogtreecommitdiff
path: root/test/files/neg/lubs.check
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2006-11-17 17:31:51 +0000
committerMartin Odersky <odersky@gmail.com>2006-11-17 17:31:51 +0000
commitf6183ef4b030030606f46fe2463d325e39ae6174 (patch)
tree9f9630626ff7dceb0ec1a577c3765600a5be3424 /test/files/neg/lubs.check
parent7106a3e0e1ec4bf27ba7f8b23ae32a37c579243c (diff)
downloadscala-f6183ef4b030030606f46fe2463d325e39ae6174.tar.gz
scala-f6183ef4b030030606f46fe2463d325e39ae6174.tar.bz2
scala-f6183ef4b030030606f46fe2463d325e39ae6174.zip
fixed bugs 802 and 807 (recursive lub problems).
Changes system so that now an approximation of lub/glb is computed.
Diffstat (limited to 'test/files/neg/lubs.check')
-rw-r--r--test/files/neg/lubs.check16
1 files changed, 16 insertions, 0 deletions
diff --git a/test/files/neg/lubs.check b/test/files/neg/lubs.check
new file mode 100644
index 0000000000..e17e897f45
--- /dev/null
+++ b/test/files/neg/lubs.check
@@ -0,0 +1,16 @@
+lubs.scala:11 error: type mismatch;
+ found : test1.this.A[test1.this.A[test1.this.A[scala.Any]]]
+ required: test1.this.A[test1.this.A[test1.this.A[test1.this.A[scala.Any]]]]
+ val x4: A[A[A[A[Any]]]] = f
+ ^
+lubs.scala:24 error: type mismatch;
+ found : test2.this.A{type T >: test2.this.C with test2.this.D <: test2.this.A}
+ required: test2.this.A{type T >: scala.Null <: test2.this.A{type T >: scala.Null <: test2.this.A}}
+ val x3: A { type T >: Null <: A { type T >: Null <: A } } = f
+ ^
+lubs.scala:25 error: type mismatch;
+ found : test2.this.A{type T >: test2.this.C with test2.this.D <: test2.this.A}
+ required: test2.this.A{type T >: scala.Null <: test2.this.A{type T >: scala.Null <: test2.this.A{type T >: scala.Null <: test2.this.A}}}
+ val x4: A { type T >: Null <: A { type T >: Null <: A { type T >: Null <: A } } } = f
+ ^
+three errors found