summaryrefslogtreecommitdiff
path: root/test/files/neg/tcpoly_typealias.check
diff options
context:
space:
mode:
authorAdriaan Moors <adriaan.moors@epfl.ch>2007-04-19 17:17:01 +0000
committerAdriaan Moors <adriaan.moors@epfl.ch>2007-04-19 17:17:01 +0000
commited8f3f0b9b31e75b14933e889d6aa105d2c0f0b7 (patch)
treea1d594d6080e28562d453d953e97db37292e6916 /test/files/neg/tcpoly_typealias.check
parent7b2bdb4e75f72fbdf4c488aea112d7838f89bc5f (diff)
downloadscala-ed8f3f0b9b31e75b14933e889d6aa105d2c0f0b7.tar.gz
scala-ed8f3f0b9b31e75b14933e889d6aa105d2c0f0b7.tar.bz2
scala-ed8f3f0b9b31e75b14933e889d6aa105d2c0f0b7.zip
suppress "scala." prefix in string representati...
suppress "scala." prefix in string representation of types (in error messages,..)
Diffstat (limited to 'test/files/neg/tcpoly_typealias.check')
-rw-r--r--test/files/neg/tcpoly_typealias.check8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/files/neg/tcpoly_typealias.check b/test/files/neg/tcpoly_typealias.check
index 8a2ae91f89..d7cf719127 100644
--- a/test/files/neg/tcpoly_typealias.check
+++ b/test/files/neg/tcpoly_typealias.check
@@ -1,13 +1,13 @@
-tcpoly_typealias.scala:37: error: The kind of type m does not conform to the expected kind of type m<: [+x]>: scala.Nothing <: scala.Any in trait A.
+tcpoly_typealias.scala:37: error: The kind of type m does not conform to the expected kind of type m<: [+x]>: Nothing <: Any in trait A.
BInv.this.m's type parameters do not match type m's expected parameters: type x (in trait BInv) is invariant, but type x (in trait A) is declared covariant
type m[x] = FooCov[x] // error: invariant x in alias def
^
-tcpoly_typealias.scala:41: error: The kind of type m does not conform to the expected kind of type m<: [+x]>: scala.Nothing <: scala.Any in trait A.
+tcpoly_typealias.scala:41: error: The kind of type m does not conform to the expected kind of type m<: [+x]>: Nothing <: Any in trait A.
BCon.this.m's type parameters do not match type m's expected parameters: type x (in trait BCon) is contravariant, but type x (in trait A) is declared covariant
type m[-x] = FooCon[x] // error: contravariant x
^
-tcpoly_typealias.scala:45: error: The kind of type m does not conform to the expected kind of type m<: [+x]>: scala.Nothing <: scala.Any in trait A.
-BBound.this.m's type parameters do not match type m's expected parameters: type x (in trait BBound)'s bounds >: scala.Nothing <: String are stricter than type x (in trait A)'s declared bounds >: scala.Nothing <: scala.Any
+tcpoly_typealias.scala:45: error: The kind of type m does not conform to the expected kind of type m<: [+x]>: Nothing <: Any in trait A.
+BBound.this.m's type parameters do not match type m's expected parameters: type x (in trait BBound)'s bounds >: Nothing <: String are stricter than type x (in trait A)'s declared bounds >: Nothing <: Any
type m[+x <: String] = FooBound[x] // error: x with stricter bound
^
three errors found