summaryrefslogtreecommitdiffstats
path: root/testData/results/TestCodeConstructs.dec
blob: d2d5c759c2638044940f77aacf5998d929c1f67e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package pkg;

class TestCodeConstructs {
   private int count = 0;

   void expressions() {
      (new String()).hashCode();
   }

   String fieldIncrement() {
      int var1 = this.count++;
      return "id:" + var1;
   }
}