summaryrefslogtreecommitdiff
path: root/plugins/java-decompiler/engine/testData/results/TestCodeConstructs.dec
blob: eb9de8daa07a17df06c26ab121bedc8d82e0db30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package pkg;

class TestCodeConstructs {
   private int count = 0;

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

   Integer fieldIncrement() {
      return new Integer(this.count++);
   }
}