summaryrefslogtreecommitdiff
path: root/test/files/neg/macro-invalidimpl-e/Impls_1.scala
blob: ad3eed5cd5086fa806973385ea5fca79399be9b4 (plain) (blame)
1
2
3
4
5
6
import scala.reflect.makro.{Context => Ctx}

object Impls {
  def foo(c: Ctx)(x: c.Expr[Any]) = ???
  def foo(c: Ctx)(x: c.Expr[Any], y: c.Expr[Any]) = ???
}