summaryrefslogtreecommitdiff
path: root/test/files/neg/t6162-inheritance.check
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2014-05-10 10:49:36 +0200
committerJason Zaugg <jzaugg@gmail.com>2014-05-16 16:02:45 +0200
commitf9abdcef6c9b8d96e1aaf98942938e2e875285d0 (patch)
treefc7605901c830000883f26b941fe13a62ae82230 /test/files/neg/t6162-inheritance.check
parentd079e769b9372daae8d7770c4156f85ea1af6621 (diff)
downloadscala-f9abdcef6c9b8d96e1aaf98942938e2e875285d0.tar.gz
scala-f9abdcef6c9b8d96e1aaf98942938e2e875285d0.tar.bz2
scala-f9abdcef6c9b8d96e1aaf98942938e2e875285d0.zip
SI-8574 Copy @SerialVersionUID, etc, to specialized subclasses
The test case demonstrates that this is important for serialization and for strictfp. (Although the latter is still pretty broken, see SI-7954.) Now that the synthetic subclass of `Tuple2[Int, Int]` also has the `@deprecatedInheritance` annotation, I had to change the spot that issues this warning to be silent after the typer phase. Otherwise, we get two warnings in `run/t3888.scala`. This also remedies double warnings that were incurred in `neg/t6162-inheritance`.
Diffstat (limited to 'test/files/neg/t6162-inheritance.check')
-rw-r--r--test/files/neg/t6162-inheritance.check8
1 files changed, 1 insertions, 7 deletions
diff --git a/test/files/neg/t6162-inheritance.check b/test/files/neg/t6162-inheritance.check
index 13c78030d9..c9f4ddaec1 100644
--- a/test/files/neg/t6162-inheritance.check
+++ b/test/files/neg/t6162-inheritance.check
@@ -7,12 +7,6 @@ object SubT extends T
usage.scala:8: warning: inheritance from trait S in package t6126 is deprecated
new S {
^
-usage.scala:3: warning: inheritance from class Foo in package t6126 is deprecated: `Foo` will be made final in a future version.
-class SubFoo extends Foo
- ^
-usage.scala:5: warning: inheritance from trait T in package t6126 is deprecated
-object SubT extends T
- ^
error: No warnings can be incurred under -Xfatal-warnings.
-5 warnings found
+three warnings found
one error found