compiler-design-eth/javali_tests/HW2_nop90/ParamLists.javali
Carlos Galindo bf60a078d7
Homework 2
2020-01-15 22:30:09 +01:00

15 lines
No EOL
298 B
Text

/*Testing all related to methods (declaration and execution)*/
class Main {
void main() {
callWithParams(a, b, c, 0, false);
object.call(a, b, d);
}
int method(int a, String b, int[] c) {
}
int[] method2() {}
Object method3() {}
Model[] method4() {}
}