diff options
Diffstat (limited to 'test/transform/resource/before/ValFinal.java')
-rw-r--r-- | test/transform/resource/before/ValFinal.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/transform/resource/before/ValFinal.java b/test/transform/resource/before/ValFinal.java new file mode 100644 index 00000000..3c5af366 --- /dev/null +++ b/test/transform/resource/before/ValFinal.java @@ -0,0 +1,6 @@ +import lombok.val; +public class ValFinal { + public void test() { + final val x = 10; + } +}
\ No newline at end of file |