aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/pos/t7690.scala
blob: 4d88c334844a5b0603040fc0b1a7753408d6bc9d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
object A
trait B[T]

object C {
  implicit def notUsed[L[x]](in: L[Int]): B[L[Int]] = ???

  class E(val ls: Int) {
    def x(f: Int => Boolean): Boolean = f(ls)
  }
  implicit def isUsed(ls: Int): E = new E(ls)

  def amethod(in: Int): Boolean =
    in.x { i =>
      import A._
      "asdf" == i.toString
    }
}