compiler-design-eth/javali_tests/HW3_nop90/MethodCallsErrors/WrongParamNumber.javali
Carlos Galindo 0afc86ceeb
Homework 3
2020-01-15 22:32:25 +01:00

9 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) {}
}