diff options
author | Reinier Zwitserloot <r.zwitserloot@projectlombok.org> | 2019-02-19 02:08:08 +0100 |
---|---|---|
committer | Reinier Zwitserloot <r.zwitserloot@projectlombok.org> | 2019-02-19 02:08:14 +0100 |
commit | 3ac415254f64d27003a3c5b7a232a33fd785b1f9 (patch) | |
tree | cb6c6be91972b5d6d30e0454eedacd66420284d9 /test/pretty | |
parent | 8479edb4262a7eb8cb76baba138f0ea5aae841c5 (diff) | |
download | lombok-3ac415254f64d27003a3c5b7a232a33fd785b1f9.tar.gz lombok-3ac415254f64d27003a3c5b7a232a33fd785b1f9.tar.bz2 lombok-3ac415254f64d27003a3c5b7a232a33fd785b1f9.zip |
[fixes #1997] try-with-resources where the thing you’re guarding is just a variable ref instead of a full decl (legal since JDK9) would break delombok
Diffstat (limited to 'test/pretty')
-rw-r--r-- | test/pretty/resource/after/tryWithResourcesVarRef.java | 9 | ||||
-rw-r--r-- | test/pretty/resource/before/TryWithResourcesVarRef.java | 10 |
2 files changed, 19 insertions, 0 deletions
diff --git a/test/pretty/resource/after/tryWithResourcesVarRef.java b/test/pretty/resource/after/tryWithResourcesVarRef.java new file mode 100644 index 00000000..5117f706 --- /dev/null +++ b/test/pretty/resource/after/tryWithResourcesVarRef.java @@ -0,0 +1,9 @@ +import java.io.PrintWriter; +public class TryWithResourcesVarRef { + { + PrintWriter pw = new PrintWriter(System.out); + try (pw) { + pw.println(); + } + } +} diff --git a/test/pretty/resource/before/TryWithResourcesVarRef.java b/test/pretty/resource/before/TryWithResourcesVarRef.java new file mode 100644 index 00000000..6c039eb7 --- /dev/null +++ b/test/pretty/resource/before/TryWithResourcesVarRef.java @@ -0,0 +1,10 @@ +//version 9: +import java.io.PrintWriter; +public class TryWithResourcesVarRef { + { + PrintWriter pw = new PrintWriter(System.out); + try (pw) { + pw.println(); + } + } +} |