summaryrefslogtreecommitdiff
path: root/test/files/run/t3575.scala
diff options
context:
space:
mode:
authorVlad Ureche <vlad.ureche@gmail.com>2012-08-07 13:19:57 +0200
committerVlad Ureche <vlad.ureche@gmail.com>2012-08-07 18:01:34 +0200
commitcc3badae17e160a446c3a160ab83a11348f75546 (patch)
treed08f697057b079649978c378f3bbad83dc205c28 /test/files/run/t3575.scala
parent86c159a7fcd2136b0c05ee0a40e51bceb085b03b (diff)
downloadscala-cc3badae17e160a446c3a160ab83a11348f75546.tar.gz
scala-cc3badae17e160a446c3a160ab83a11348f75546.tar.bz2
scala-cc3badae17e160a446c3a160ab83a11348f75546.zip
Removes AnyRef specialization from library
As discussed in #999, #1025 and https://groups.google.com/forum/?hl=en&fromgroups#!topic/scala-internals/5P5TS9ZWe_w instrumented.jar is generated from the current source, there's no need for a bootstrap commit. Review by @paulp.
Diffstat (limited to 'test/files/run/t3575.scala')
-rw-r--r--test/files/run/t3575.scala8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/files/run/t3575.scala b/test/files/run/t3575.scala
index 9ccd90a8c4..7ede65b00c 100644
--- a/test/files/run/t3575.scala
+++ b/test/files/run/t3575.scala
@@ -1,8 +1,8 @@
// This is here to tell me if the behavior changes, not because
// the output is endorsed.
case class Two[
- @specialized A,
- @specialized B
+ @specialized(Specializable.Everything) A,
+ @specialized(Specializable.Everything) B
](v: A, w: B)
case class TwoLong[
@@ -16,8 +16,8 @@ case class TwoCool[
](v: A, w: B)
case class TwoShort[
- @specialized() A,
- @specialized() B
+ @specialized(Specializable.Everything) A,
+ @specialized(Specializable.Everything) B
](v: A, w: B)
case class TwoMinimal[