aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/macro-undetparams-implicitval/Test.scala
blob: 5e38618f60313ca2d61fa946df5a208667b7cc44 (plain) (blame)
1
2
3
4
5
6
import scala.reflect.runtime.universe._

object Test extends dotty.runtime.LegacyApp {
  def foo[T: TypeTag] = println(implicitly[TypeTag[T]])
  foo
}