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

8 lines
No EOL
111 B
Text

// Two fields in a class cannot share the same name
class Main {
void main() {}
int a;
Object b;
Main a;
}