summaryrefslogtreecommitdiff
path: root/test/pending/run/macro-reify-typetag-hktypeparams-tags/Test.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending/run/macro-reify-typetag-hktypeparams-tags/Test.scala')
-rw-r--r--test/pending/run/macro-reify-typetag-hktypeparams-tags/Test.scala9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/pending/run/macro-reify-typetag-hktypeparams-tags/Test.scala b/test/pending/run/macro-reify-typetag-hktypeparams-tags/Test.scala
new file mode 100644
index 0000000000..0358da9b0d
--- /dev/null
+++ b/test/pending/run/macro-reify-typetag-hktypeparams-tags/Test.scala
@@ -0,0 +1,9 @@
+import scala.reflect.mirror._
+
+object Test extends App {
+ def fooTypeTagHK[C[_]: TypeTag, T: TypeTag] = {
+ println(implicitly[TypeTag[C[T]]])
+ println(implicitly[TypeTag[List[C[T]]]])
+ }
+ fooTypeTagHK[List, Int]
+} \ No newline at end of file