summaryrefslogtreecommitdiff
path: root/test/files/neg/bug1275.scala
diff options
context:
space:
mode:
authorAdriaan Moors <adriaan.moors@epfl.ch>2007-08-22 13:46:38 +0000
committerAdriaan Moors <adriaan.moors@epfl.ch>2007-08-22 13:46:38 +0000
commit20caac2baca22cd3cb71a7f21da5703e4ca6f09a (patch)
treef234bd36e7c14e362d2d5d87007334ad96720c19 /test/files/neg/bug1275.scala
parente69edec6c715240cf71f4a555232ea18cd21e19f (diff)
downloadscala-20caac2baca22cd3cb71a7f21da5703e4ca6f09a.tar.gz
scala-20caac2baca22cd3cb71a7f21da5703e4ca6f09a.tar.bz2
scala-20caac2baca22cd3cb71a7f21da5703e4ca6f09a.zip
fixed 1275 by adding minimal early check to Nam...
fixed 1275 by adding minimal early check to Namers so that overriding of type members in refinements cannot change number of type parameters (in principle the full overriding checks should be performed at a later point, when they don't cause cyclicity errors -- this is TODO)
Diffstat (limited to 'test/files/neg/bug1275.scala')
-rw-r--r--test/files/neg/bug1275.scala14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/files/neg/bug1275.scala b/test/files/neg/bug1275.scala
new file mode 100644
index 0000000000..04c66400c8
--- /dev/null
+++ b/test/files/neg/bug1275.scala
@@ -0,0 +1,14 @@
+// tested using Scala compiler version 2.6.0-RC1 -- (c) 2002-2007 LAMP/EPFL
+
+// prompted by "Covariant return types" mailing list question
+object TestCovariance {
+
+ // see Type constructor polymorphism in http://www.scala-lang.org/docu/changelog.html
+ trait Seq[+t] {
+ type MyType[+t] <: Seq[t]
+
+ def f: MyType[t]
+ }
+
+ def span[a, s <: Seq[a] { type MyType <: s } ](xs: s): s = xs f
+}