compiler-design-eth/javali_tests/HW3_nop90/DoubleDeclarationsErrors/DoubleLocalVar.javali

8 lines
123 B
Text
Raw Permalink Normal View History

2020-01-15 22:32:25 +01:00
// Two local variables in a method cannot share the same name
class Main {
void main() {}
void test() {
int a, a;
}
}