aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/pos/t5892.scala
blob: ac383f8c184861d1a750a7774a9a6aa4c9aa6134 (plain) (blame)
1
2
3
4
5
class foo(a: String) extends annotation.StaticAnnotation
object o {
  implicit def i2s(i: Int): String = ""
  @foo(1: String) def blerg: Unit = { }
}