10 lines
173 B
Text
10 lines
173 B
Text
|
// test double declaration
|
||
|
// test local variable and parameter have same name
|
||
|
|
||
|
class Main {
|
||
|
void main() {}
|
||
|
int action(int p1, boolean p2) {
|
||
|
Object p1;
|
||
|
return 1;
|
||
|
}
|
||
|
}
|