summaryrefslogtreecommitdiff
path: root/test/files/neg/macro-bundle-polymorphic.check
blob: 07c5f551b15cd8630fe4cf34cd32cb290e157184 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
macro-bundle-polymorphic.scala:9: error: macro bundles must be monomorphic traits extending either BlackboxMacro or WhiteboxMacro and not implementing their `val c: BlackboxContext/WhiteboxContext` member
  def foo = macro Bundle.impl
      ^
macro-bundle-polymorphic.scala:10: error: macro bundles must be monomorphic traits extending either BlackboxMacro or WhiteboxMacro and not implementing their `val c: BlackboxContext/WhiteboxContext` member
  def foo = macro Bundle[Int].impl
      ^
macro-bundle-polymorphic.scala:11: error: macro bundles must be monomorphic traits extending either BlackboxMacro or WhiteboxMacro and not implementing their `val c: BlackboxContext/WhiteboxContext` member
  def foo = macro Bundle[Int, Nothing].impl
      ^
three errors found