summaryrefslogtreecommitdiff
path: root/test/files/pos/ticket2201.scala
blob: 21af170cf1d4a51ea8777b546b807236233d89db (plain) (blame)
1
2
3
4
5
6
7
8
class Test
object Test { implicit def view(x : Test) = 0 }

object Call {
  def call(implicit view : Test => Int) = view(null)
  call
  call
}