2022-04-07 18:43:21 +02:00

7 lines
86 B
Scala

object ParamAndLocal {
def foo(i: Int): Int = {
val i: Int = i + 1;
i
}
}