aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/t3672.scala
blob: b2752ce21ff7169aeeb2092aebc148aeed3a8759 (plain) (blame)
1
2
3
4
object Test {
  def foo(f: Int => Int) = () ; foo { implicit x : Int => x + 1 }
  def bar(f: Int => Int) = () ; foo { x : Int => x + 1 }
}