diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2012-02-15 04:45:28 +0100 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2012-02-15 04:45:28 +0100 |
commit | 0f861010989cb03d09003f91d936f100080b1a18 (patch) | |
tree | de440cf6320061ac3f64e694ef0ce3a04d360394 /test/transform/resource/before/ValInMultiDeclaration.java | |
parent | b4a8affec27ac09fd5bceeaad6a46f4bc6f18034 (diff) | |
download | lombok-0f861010989cb03d09003f91d936f100080b1a18.tar.gz lombok-0f861010989cb03d09003f91d936f100080b1a18.tar.bz2 lombok-0f861010989cb03d09003f91d936f100080b1a18.zip |
Couple more tests for val
Diffstat (limited to 'test/transform/resource/before/ValInMultiDeclaration.java')
-rw-r--r-- | test/transform/resource/before/ValInMultiDeclaration.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/transform/resource/before/ValInMultiDeclaration.java b/test/transform/resource/before/ValInMultiDeclaration.java new file mode 100644 index 00000000..1c333ebb --- /dev/null +++ b/test/transform/resource/before/ValInMultiDeclaration.java @@ -0,0 +1,6 @@ +import lombok.val; +public class ValInMultiDeclaration { + public void test() { + val x = 10, y = ""; + } +}
\ No newline at end of file |