compiler-design-eth/javali_tests/HW2_nop90/OrderOfDeclarations.javali

8 lines
221 B
Text
Raw Normal View History

2020-01-15 22:30:09 +01:00
/*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) {}
}