summaryrefslogtreecommitdiff
path: root/test/files/neg/t8104/Test_2.scala
diff options
context:
space:
mode:
authorAdriaan Moors <adriaan.moors@typesafe.com>2014-02-14 13:21:34 -0800
committerAdriaan Moors <adriaan.moors@typesafe.com>2014-02-14 13:21:34 -0800
commitd227a89363886635969f4a7725303c6b65b0914b (patch)
tree433096b16268bf327f0a5678f5e29aff914407d6 /test/files/neg/t8104/Test_2.scala
parent35eb20283e7da0af28aaa0ae0d1051e21cc6c25d (diff)
parent5984461227c70dd48d9c87c6e5afe0cf8c58f8f1 (diff)
downloadscala-d227a89363886635969f4a7725303c6b65b0914b.tar.gz
scala-d227a89363886635969f4a7725303c6b65b0914b.tar.bz2
scala-d227a89363886635969f4a7725303c6b65b0914b.zip
Merge pull request #3525 from adriaanm/t8177b
SI-8177 specializeSym must use memberInfo on high side
Diffstat (limited to 'test/files/neg/t8104/Test_2.scala')
-rw-r--r--test/files/neg/t8104/Test_2.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/neg/t8104/Test_2.scala b/test/files/neg/t8104/Test_2.scala
index 585f76c00f..a3bd940188 100644
--- a/test/files/neg/t8104/Test_2.scala
+++ b/test/files/neg/t8104/Test_2.scala
@@ -9,7 +9,7 @@ object Test extends App {
case class C(x: Int, y: Int)
import scala.reflect.runtime.universe._
- def reprify[T, Repr](x: T)(implicit generic: Generic.Aux[T, Repr], tag: TypeTag[Repr]) = println(tag)
+ def reprify[T, Repr](x: T)(implicit generic: Generic.Aux[T, Repr], tag: WeakTypeTag[Repr]) = println(tag)
reprify(C(40, 2))
// this is a compilation error at the moment as explained in SI-8104