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

class C

object Impls {
  def foo[U <: C](c: Ctx): c.Expr[Unit] = c.literalUnit
}