summaryrefslogtreecommitdiff
path: root/test/files/neg/variances.check
diff options
context:
space:
mode:
authorAdriaan Moors <adriaan.moors@epfl.ch>2007-07-20 09:03:20 +0000
committerAdriaan Moors <adriaan.moors@epfl.ch>2007-07-20 09:03:20 +0000
commitd33a20f0677ca77490bfc40486f0f2c72f14a21d (patch)
treee0e3da80cfe0abb1d95afe32d57591b8dc150002 /test/files/neg/variances.check
parent1adb565b6e22550d72bf99fb7a527034ed770629 (diff)
downloadscala-d33a20f0677ca77490bfc40486f0f2c72f14a21d.tar.gz
scala-d33a20f0677ca77490bfc40486f0f2c72f14a21d.tar.bz2
scala-d33a20f0677ca77490bfc40486f0f2c72f14a21d.zip
classOf[Integer] now properly resolves to class...
classOf[Integer] now properly resolves to classOf[java.lang.Integer] because Predef.Integer (and Character) are @deprecated, had to update check files to include these warnings
Diffstat (limited to 'test/files/neg/variances.check')
-rw-r--r--test/files/neg/variances.check10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/files/neg/variances.check b/test/files/neg/variances.check
index ba894a439d..4934053706 100644
--- a/test/files/neg/variances.check
+++ b/test/files/neg/variances.check
@@ -1,3 +1,12 @@
+variances.scala:53: warning: type Character in object Predef is deprecated
+ val a : Foo[Character] = new Foo[Character]
+ ^
+variances.scala:53: warning: type Character in object Predef is deprecated
+ val a : Foo[Character] = new Foo[Character]
+ ^
+variances.scala:58: warning: type Character in object Predef is deprecated
+ val x : Character = test.a.getA
+ ^
variances.scala:4: error: covariant type A occurs in contravariant position in type test.Vector[A] of value x
def append(x: Vector[A]): Vector[A]
^
@@ -7,4 +16,5 @@ variances.scala:14: error: covariant type A occurs in contravariant position in
variances.scala:16: error: covariant type A occurs in invariant position in type test.C[A] with ScalaObject{def this(): object Foo.this.Baz} of object Baz
object Baz extends C[A]
^
+three warnings found
three errors found