compiler-design-eth/javali_tests/HW3_nop90/MethodCallsErrors/WrongParamNumber.javali

10 lines
130 B
Text
Raw Permalink Normal View History

2020-01-15 22:32:25 +01:00
// call an method with wrong number of parameters
class Main {
void main() {
aux(a, b, c);
}
void aux(int a, int b) {}
}