summaryrefslogtreecommitdiff
path: root/plugins/java-decompiler/engine/testData/results/TestCodeConstructs.dec
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/java-decompiler/engine/testData/results/TestCodeConstructs.dec')
-rw-r--r--plugins/java-decompiler/engine/testData/results/TestCodeConstructs.dec13
1 files changed, 13 insertions, 0 deletions
diff --git a/plugins/java-decompiler/engine/testData/results/TestCodeConstructs.dec b/plugins/java-decompiler/engine/testData/results/TestCodeConstructs.dec
new file mode 100644
index 000000000000..eb9de8daa07a
--- /dev/null
+++ b/plugins/java-decompiler/engine/testData/results/TestCodeConstructs.dec
@@ -0,0 +1,13 @@
+package pkg;
+
+class TestCodeConstructs {
+ private int count = 0;
+
+ void expressions() {
+ (new String()).hashCode();
+ }
+
+ Integer fieldIncrement() {
+ return new Integer(this.count++);
+ }
+}