summaryrefslogtreecommitdiff
path: root/test/files/jvm
diff options
context:
space:
mode:
authorPavel Pavlov <pavel.e.pavlov@gmail.com>2014-02-05 14:44:19 +0700
committerPavel Pavlov <pavel.e.pavlov@gmail.com>2014-02-05 14:48:42 +0700
commit50c1c42f619d347303d10375943734d817169e6a (patch)
treec3fd6694153a820c4128c2133dedac6cd8333d1d /test/files/jvm
parenteba3cc6a9e4bb091db3cc7d68dc64abb803f52c7 (diff)
downloadscala-50c1c42f619d347303d10375943734d817169e6a.tar.gz
scala-50c1c42f619d347303d10375943734d817169e6a.tar.bz2
scala-50c1c42f619d347303d10375943734d817169e6a.zip
PR #3233 cleanup
- `::.head` became a `val`; excessive accessor removed - SerializationProxy moved to `object List`
Diffstat (limited to 'test/files/jvm')
-rw-r--r--test/files/jvm/t6941/Analyzed_1.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/jvm/t6941/Analyzed_1.scala b/test/files/jvm/t6941/Analyzed_1.scala
index 549abd5e64..b6951f71ee 100644
--- a/test/files/jvm/t6941/Analyzed_1.scala
+++ b/test/files/jvm/t6941/Analyzed_1.scala
@@ -6,6 +6,6 @@ class SameBytecode {
}
def b(xs: List[Int]) = xs match {
- case xs: ::[Int] => xs.hd$1
+ case xs: ::[Int] => xs.head
}
} \ No newline at end of file