summaryrefslogtreecommitdiff
path: root/test/files/run/t1195.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t1195.scala')
-rw-r--r--test/files/run/t1195.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/files/run/t1195.scala b/test/files/run/t1195.scala
index 81ef5bdb0e..93b1dcbd07 100644
--- a/test/files/run/t1195.scala
+++ b/test/files/run/t1195.scala
@@ -6,8 +6,8 @@ object Test {
val f1 = f()
val g1 = g()
val h1 = h()
-
- def m[T: Manifest](x: T) = println(manifest[T])
+
+ def m[T: Manifest](x: T) = println(manifest[T] + ", underlying = " + manifest[T].sym.typeSignature)
def main(args: Array[String]): Unit = {
m(f)