IDEA-127466 (test added)

master
Roman Shevchenko 10 years ago
parent 7a8097321f
commit cf72873535
  1. BIN
      testData/classes/pkg/TestCodeConstructs.class
  2. 5
      testData/results/TestCodeConstructs.dec
  3. 5
      testData/src/pkg/TestCodeConstructs.java

@ -7,8 +7,7 @@ class TestCodeConstructs {
(new String()).hashCode();
}
String fieldIncrement() {
int var1 = this.count++;
return "id:" + var1;
Integer fieldIncrement() {
return new Integer(this.count++);
}
}

@ -21,8 +21,7 @@ class TestCodeConstructs {
}
private int count = 0;
String fieldIncrement() {
int id = count++;
return "id:" + id;
Integer fieldIncrement() {
return new Integer(count++);
}
}
Loading…
Cancel
Save