aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/before
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2021-10-22 09:54:12 +0200
committerGitHub <noreply@github.com>2021-10-22 09:54:12 +0200
commit341c458f108d4bb207e32c6e61647ca673526a6e (patch)
treef65f76f8c838a73f5f91f8efe0811c6b019857bb /test/transform/resource/before
parent13d84b129e562fdc71b049778c3b3bd2376e29a4 (diff)
parent553b25addde4fab136258f7718e274a98bfbe34a (diff)
downloadlombok-341c458f108d4bb207e32c6e61647ca673526a6e.tar.gz
lombok-341c458f108d4bb207e32c6e61647ca673526a6e.tar.bz2
lombok-341c458f108d4bb207e32c6e61647ca673526a6e.zip
Merge pull request #3007 from Rawi01/eclipse-junit
Resolve var/val only once in eclipse
Diffstat (limited to 'test/transform/resource/before')
-rw-r--r--test/transform/resource/before/ValInvalidParameter.java32
1 files changed, 32 insertions, 0 deletions
diff --git a/test/transform/resource/before/ValInvalidParameter.java b/test/transform/resource/before/ValInvalidParameter.java
new file mode 100644
index 00000000..f4961c4e
--- /dev/null
+++ b/test/transform/resource/before/ValInvalidParameter.java
@@ -0,0 +1,32 @@
+//version :9
+import lombok.val;
+
+public class ValInvalidParameter {
+ public void val() {
+ val a = a(new NonExistingClass());
+ val b = a(a(new NonExistingClass()));
+ val c = nonExisitingMethod(b(1));
+ val d = nonExistingObject.nonExistingMethod();
+ val e = b(1).nonExistingMethod();
+ val f = 1 > 2 ? a(new NonExistingClass()) : a(new NonExistingClass());
+ val g = b2(1);
+ val h = b2(a("a"), a(null));
+ val i = a(a(null));
+ }
+
+ public int a(String param) {
+ return 0;
+ }
+
+ public int a(Integer param) {
+ return 0;
+ }
+
+ public Integer b(int i) {
+ return i;
+ }
+
+ public Integer b2(int i, int j) {
+ return i;
+ }
+} \ No newline at end of file