aboutsummaryrefslogtreecommitdiff
path: root/tests/disabled/macro/run/macro-reify-typetag-notypeparams/Test.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/disabled/macro/run/macro-reify-typetag-notypeparams/Test.scala')
-rw-r--r--tests/disabled/macro/run/macro-reify-typetag-notypeparams/Test.scala6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/disabled/macro/run/macro-reify-typetag-notypeparams/Test.scala b/tests/disabled/macro/run/macro-reify-typetag-notypeparams/Test.scala
new file mode 100644
index 000000000..1eff6e93f
--- /dev/null
+++ b/tests/disabled/macro/run/macro-reify-typetag-notypeparams/Test.scala
@@ -0,0 +1,6 @@
+import scala.reflect.runtime.universe._
+
+object Test extends dotty.runtime.LegacyApp {
+ println(implicitly[TypeTag[Int]])
+ println(implicitly[TypeTag[List[Int]]])
+}