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


class TestCodeConstructs {

   private int count = 0;


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

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