summaryrefslogtreecommitdiff
path: root/test/files/pos/t7486-named.scala
blob: 253293e5f17eb6a75f3926558a16e5c0ae9da00a (plain) (blame)
1
2
3
4
5
6
7
8
object Test {
  def fold(empty: Any) = ()
  implicit val notAnnotatedImplicit = new {
    fold(empty = 0)
    def empty[A]: Any = ???
  }
}