aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/macro-reify-typetag-typeparams-tags/Test.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/macro-reify-typetag-typeparams-tags/Test.scala')
-rw-r--r--tests/pending/run/macro-reify-typetag-typeparams-tags/Test.scala9
1 files changed, 0 insertions, 9 deletions
diff --git a/tests/pending/run/macro-reify-typetag-typeparams-tags/Test.scala b/tests/pending/run/macro-reify-typetag-typeparams-tags/Test.scala
deleted file mode 100644
index 4540bb6b3..000000000
--- a/tests/pending/run/macro-reify-typetag-typeparams-tags/Test.scala
+++ /dev/null
@@ -1,9 +0,0 @@
-import scala.reflect.runtime.universe._
-
-object Test extends dotty.runtime.LegacyApp {
- def fooTypeTag[T: TypeTag] = {
- println(implicitly[TypeTag[T]])
- println(implicitly[TypeTag[List[T]]])
- }
- fooTypeTag[Int]
-}