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