compiler-design-eth/javali_tests/HW3_nop90/DoubleDeclarationsErrors/DoubleLocalVar.javali
Carlos Galindo 0afc86ceeb
Homework 3
2020-01-15 22:32:25 +01:00

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;
}
}