aboutsummaryrefslogtreecommitdiff
path: root/tests/disabled/macro/run/macro-impl-tparam-only-in-impl/Macros_Test_2.scala
blob: b626ce35ee1ee34c40c91cababea37151f3bd104 (plain) (blame)
1
2
3
4
5
6
7
8
object Macros {
  def foo: Unit = macro Impls.foo[String]
}

object Test extends dotty.runtime.LegacyApp {
  import Macros._
  foo
}