8 lines
No EOL
123 B
Text
8 lines
No EOL
123 B
Text
// Two local variables in a method cannot share the same name
|
|
|
|
class Main {
|
|
void main() {}
|
|
void test() {
|
|
int a, a;
|
|
}
|
|
} |