xref: /aosp_15_r20/external/antlr/runtime/Perl5/examples/tweak/output (revision 16467b971bd3e2009fad32dd79016f2c7e421deb)
1public class Wrapper {
2public void foo() {
3int k;
4int i;
5  i = 3;
6  k = i;
7  i = k*4;
8}
9
10public void bar() {
11int j;
12  j = i*2;
13}
14}
15
16
17