summaryrefslogtreecommitdiff
path: root/test/files/run
diff options
context:
space:
mode:
authorJosh Suereth <Joshua.Suereth@gmail.com>2012-08-07 12:41:15 -0700
committerJosh Suereth <Joshua.Suereth@gmail.com>2012-08-07 12:41:15 -0700
commit6b3d36bc19cc82350c3754b0b91fb074a443d9bc (patch)
treecb58827272d77f274be83f164914f64ec22c82ee /test/files/run
parentd8b35a11d67c2a597f1d93456b341a650b542520 (diff)
parentcc3badae17e160a446c3a160ab83a11348f75546 (diff)
downloadscala-6b3d36bc19cc82350c3754b0b91fb074a443d9bc.tar.gz
scala-6b3d36bc19cc82350c3754b0b91fb074a443d9bc.tar.bz2
scala-6b3d36bc19cc82350c3754b0b91fb074a443d9bc.zip
Merge pull request #1082 from VladUreche/topic/remove-anyref-from-library
Removes AnyRef specialization from library
Diffstat (limited to 'test/files/run')
-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[