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