summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2008-02-06 13:55:18 +0000
committerMartin Odersky <odersky@gmail.com>2008-02-06 13:55:18 +0000
commit1021800b39ed89c2269bd3722aa4522d038c5c19 (patch)
tree6018fd0e88e7d05629b8f73c1c3298782275d92a /test
parentdf55a8175a90180194c61f91592a5e34b0bcf2e5 (diff)
downloadscala-1021800b39ed89c2269bd3722aa4522d038c5c19.tar.gz
scala-1021800b39ed89c2269bd3722aa4522d038c5c19.tar.bz2
scala-1021800b39ed89c2269bd3722aa4522d038c5c19.zip
added reverse to RichString.
fixed immediate problem in #409. we ignore now flag MONOMOPRHIC.
Diffstat (limited to 'test')
-rw-r--r--test/files/neg/bug412.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/neg/bug412.scala b/test/files/neg/bug412.scala
index 66de4761fb..54cd90da1c 100644
--- a/test/files/neg/bug412.scala
+++ b/test/files/neg/bug412.scala
@@ -5,7 +5,7 @@ object Magic {
trait C1 extends C { type T = T1; }
trait C2 extends C { type T <: T2; }
- type CX;
+ type CX >: Null;
val c: CX with C2 = null;
def castA(x: c.T): T2 = x;