8 lines
No EOL
221 B
Text
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) {}
|
|
} |