10 lines
130 B
Text
10 lines
130 B
Text
|
// call an method with wrong number of parameters
|
||
|
|
||
|
class Main {
|
||
|
void main() {
|
||
|
aux(a, b, c);
|
||
|
}
|
||
|
|
||
|
void aux(int a, int b) {}
|
||
|
}
|