DEBSOURCES
Skip Quicknav
sources / scala / 2.11.12-6 / test / files / neg / t5091.scala
1234567891011
object RecursiveValueNeedsType { def foo(param: String) = 42 def bar(n: Int) = 42 { val xxx = foo(param = null) val param = bar(xxx) } }