15 lines
No EOL
298 B
Text
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() {}
|
|
} |