aboutsummaryrefslogtreecommitdiff
path: root/test/ecj/SimpleTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/ecj/SimpleTest.java')
-rw-r--r--test/ecj/SimpleTest.java10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/ecj/SimpleTest.java b/test/ecj/SimpleTest.java
new file mode 100644
index 00000000..56c2a211
--- /dev/null
+++ b/test/ecj/SimpleTest.java
@@ -0,0 +1,10 @@
+@lombok.Data
+public class SimpleTest {
+ private final String test;
+ private final int foo;
+
+ public String bar() {
+ int val = getFoo() + 5;
+ return new SimpleTest("", 0).toString() + val;
+ }
+}