Home | History | Annotate | Download | only in tweak
      1 public class Wrapper {
      2 public void foo() {
      3 int k;
      4 int i;
      5   i = 3;
      6   k = i;
      7   i = k*4;
      8 }
      9 
     10 public void bar() {
     11 int j;
     12   j = i*2;
     13 }
     14 }
     15 
     16 
     17