9 lines
152 B
Plaintext
Vendored
9 lines
152 B
Plaintext
Vendored
// "Add parameter to function 'foo'" "true"
|
|
// DISABLE-ERRORS
|
|
|
|
fun foo(x: Int, i: Int) {
|
|
foo();
|
|
foo(1, 4);
|
|
foo(1, 4);
|
|
foo(2, 3, sdsd);
|
|
} |