7 lines
159 B
Text
7 lines
159 B
Text
|
// No pair of parameters in a method declaration can have the same name
|
||
|
|
||
|
class Main {
|
||
|
void main() {}
|
||
|
int action(int p1, boolean p2, Object p, Object p) {}
|
||
|
}
|