summaryrefslogtreecommitdiff
path: root/test/files/run/macro-expand-tparams-bounds-b/Impls_1.scala
blob: 9103ddb08ac88eee4d31ca4feb796c7d28a9590d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import scala.reflect.makro.{Context => Ctx}

class C

object Impls {
  def foo[U <: C](c: Ctx): c.Expr[Unit] = {
    import c.mirror._
    Literal(Constant(()))
  }
}