summaryrefslogtreecommitdiff
path: root/test/files/jvm
diff options
context:
space:
mode:
authorEugene Burmako <xeno.by@gmail.com>2012-08-29 05:01:28 -0700
committerEugene Burmako <xeno.by@gmail.com>2012-08-29 05:01:28 -0700
commite03a5b766be27a1f43c9151a611b04519a2b15df (patch)
tree29bf27ef6e6796761ad0986c492d9d97b782d050 /test/files/jvm
parent7a2f7174a246aa8dd5406e24447f868db6c83a5f (diff)
parent2f9bcaa6af0615fc2d5d2b3ce077790b274dd279 (diff)
downloadscala-e03a5b766be27a1f43c9151a611b04519a2b15df.tar.gz
scala-e03a5b766be27a1f43c9151a611b04519a2b15df.tar.bz2
scala-e03a5b766be27a1f43c9151a611b04519a2b15df.zip
Merge pull request #1197 from scalamacros/topic/kind
removes Symbol.kind and Type.kind
Diffstat (limited to 'test/files/jvm')
-rw-r--r--test/files/jvm/manifests-new.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/jvm/manifests-new.scala b/test/files/jvm/manifests-new.scala
index 8706881640..f730be67bb 100644
--- a/test/files/jvm/manifests-new.scala
+++ b/test/files/jvm/manifests-new.scala
@@ -106,6 +106,6 @@ trait TestUtil {
// val t1: TypeTag[T] = read(write(t))
val t1: TypeTag[T] = t
val x1 = x.toString.replaceAll("@[0-9a-z]+$", "")
- println("x="+x1+", t="+t1+", k="+t1.tpe.kind+", s="+t1.tpe.typeSymbol.toString)
+ println("x="+x1+", t="+t1+", k="+t1.tpe.asInstanceOf[Product].productPrefix+", s="+t1.tpe.typeSymbol.toString)
}
} \ No newline at end of file