7 lines
86 B
Scala
Raw Normal View History

2022-04-07 18:43:21 +02:00
object ParamAndLocal {
def foo(i: Int): Int = {
val i: Int = i + 1;
i
}
}