summaryrefslogblamecommitdiff
path: root/test/files/pos/t7690.scala
blob: e8911a93e8dea783e417ed7c7bf73a032132b9c6 (plain) (tree)
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
    }
}