Disabled external gits
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
object Args {
|
||||
def foo(i: Int): Int = { foo(1, 2) }
|
||||
}
|
@@ -0,0 +1,8 @@
|
||||
object ParamAndLocal_0 {
|
||||
def foo_0(i_0: Int): Int = {
|
||||
val i_1: Int =
|
||||
(i_0 + 1);
|
||||
i_1
|
||||
}
|
||||
}
|
||||
|
@@ -0,0 +1,6 @@
|
||||
object ParamAndLocal {
|
||||
def foo(i: Int): Int = {
|
||||
val i: Int = i + 1;
|
||||
i
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user