summaryrefslogtreecommitdiff
path: root/test/pending/run/macro-expand-tparams-prefix-f1/Macros_Test_2.scala
blob: bc8e7ac75cd66b29c2fbfd6cf65fbf9dc089862c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
import scala.reflect.mirror._

object Test extends App {
  class D[T] {
    class C[U] {
      def foo[V] = macro Impls.foo[List[T], U, V]
      foo[Boolean]
    }
  }

  val outer1 = new D[Int]
  new outer1.C[String]
}