xref: /aosp_15_r20/external/antlr/runtime/Python/tests/t018llstar.input (revision 16467b971bd3e2009fad32dd79016f2c7e421deb)
1*16467b97STreehugger Robotchar c;
2*16467b97STreehugger Robotint x;
3*16467b97STreehugger Robot
4*16467b97STreehugger Robotvoid bar(int x);
5*16467b97STreehugger Robot
6*16467b97STreehugger Robotint foo(int y, char d) {
7*16467b97STreehugger Robot  int i;
8*16467b97STreehugger Robot  for (i=0; i<3; i=i+1) {
9*16467b97STreehugger Robot    x=3;
10*16467b97STreehugger Robot    y=5;
11*16467b97STreehugger Robot  }
12*16467b97STreehugger Robot}
13