summaryrefslogtreecommitdiff
path: root/test/files/neg/t8228.scala
blob: 19d71aeab478b51f88d988a9a8f40d375ca9ffeb (plain) (blame)
1
2
3
4
5
6
7
object X {
  def bar = {
    def foo(x: Any) = ""
    val foo = foo(null)
    foo(null) // cycle in isApplicableBasedOnArity
  }
}