aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/pos/ticket2201.scala
blob: 96b7b4a3d4935b902a35f4adb072214cac934430 (plain) (blame)
1
2
3
4
5
6
7
8
class Test
object Test { implicit def view(x : Test): Int = 0 }

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