Stap 4: Regel 4:
Var-arg parameter moet de laatste parameter in de lijst anders het leidt tot tijd compileerfout.'] ' verwacht.
Ex:
void add(int a,float... b){ void add(int a,float b,long... c){} // compile time error void add(int...a, float b,long c){} //compile time error