summaryrefslogtreecommitdiff
path: root/test/files/neg/t9527a.scala
blob: 35c58fc9a6bbd9f177a10fe7232dbc052abe6b57 (plain) (blame)
1
2
3
4
5
6
7
8
class C {
  implicit def f(x: Int): String = "f was here"
  implicit def g(x: Int): String = "f was here"
  def test: Unit = {
    implicitly[Int => String]
  }
}