• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package test3;
2 
3 public class ReplaceNew {
ReplaceNew()4     public ReplaceNew() {}
ReplaceNew(String s)5     public ReplaceNew(String s) {}
6     int i = 0;
run()7     public int run() {
8         i = 3;
9         @SuppressWarnings("unused")
10         ReplaceNew s = new ReplaceNew();
11         new ReplaceNew();
12         return i;
13     }
14 
15     static int j = 0;
run2()16     public int run2() {
17         new ReplaceNew(new String("test"));
18         return j;
19     }
20 }
21