summaryrefslogtreecommitdiff
path: root/test/files/run/delambdafy_uncurry_byname_inline.check
diff options
context:
space:
mode:
authorLukas Rytz <lukas.rytz@gmail.com>2014-11-05 12:10:16 +0100
committerLukas Rytz <lukas.rytz@gmail.com>2014-11-05 16:02:35 +0100
commit21a44fee3e92817eed3d002c839b62f5e1281200 (patch)
tree8a4739086cbaad471b7dfc5f1bb186dd8dda930c /test/files/run/delambdafy_uncurry_byname_inline.check
parentb556b2fdcc7198bffe0ee90c5adc8c9eb3c29e36 (diff)
downloadscala-21a44fee3e92817eed3d002c839b62f5e1281200.tar.gz
scala-21a44fee3e92817eed3d002c839b62f5e1281200.tar.bz2
scala-21a44fee3e92817eed3d002c839b62f5e1281200.zip
SI-8960 Bring back the SerialVersionUID to anonymous function classes
In PR #1673 / 4267444, the annotation `SerialVersionId` was changed from a `StaticAnnotation` to `ClassFileAnnotation` in order to enforce annotation arguments to be constants. That was 2.11.0. The ID value in the AnnotationInfo moved from `args` to `assocs`, but the backend was not adjusted. This was fixed in PR #3711 / ecbc9d0 for 2.11.1. Unfortunately, the synthetic AnnotationInfo that is added to anonymous function classes still used the old constructor (`args` instead of `assocs`), so extracting the value failed, and no field was added to the classfile.
Diffstat (limited to 'test/files/run/delambdafy_uncurry_byname_inline.check')
-rw-r--r--test/files/run/delambdafy_uncurry_byname_inline.check2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/delambdafy_uncurry_byname_inline.check b/test/files/run/delambdafy_uncurry_byname_inline.check
index 0dc69b379a..d96a995f44 100644
--- a/test/files/run/delambdafy_uncurry_byname_inline.check
+++ b/test/files/run/delambdafy_uncurry_byname_inline.check
@@ -7,7 +7,7 @@ package <empty> {
};
def bar(x: () => Int): Int = x.apply();
def foo(): Int = Foo.this.bar({
- @SerialVersionUID(0) final <synthetic> class $anonfun extends scala.runtime.AbstractFunction0[Int] with Serializable {
+ @SerialVersionUID(value = 0) final <synthetic> class $anonfun extends scala.runtime.AbstractFunction0[Int] with Serializable {
def <init>(): <$anon: () => Int> = {
$anonfun.super.<init>();
()