7 lines
No EOL
111 B
Text
7 lines
No EOL
111 B
Text
// Methods cannot be overloaded
|
|
|
|
class Main {
|
|
void main() {}
|
|
void method(int a) {}
|
|
void method(int[] a) {}
|
|
} |