compiler-design-eth/javali_tests/HW2_nop90/OrderOfDeclarations.javali
Carlos Galindo bf60a078d7
Homework 2
2020-01-15 22:30:09 +01:00

8 lines
No EOL
221 B
Text

/*Check the order of the declarations in the generated parser
* Do the variables come always first or in their place? */
class ClassName {
void a() {}
int a;
void a() {}
void tests(boolean d, nulle a) {}
}