aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/before/ValInMultiDeclaration.java
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2012-02-15 04:45:28 +0100
committerReinier Zwitserloot <reinier@zwitserloot.com>2012-02-15 04:45:28 +0100
commit0f861010989cb03d09003f91d936f100080b1a18 (patch)
treede440cf6320061ac3f64e694ef0ce3a04d360394 /test/transform/resource/before/ValInMultiDeclaration.java
parentb4a8affec27ac09fd5bceeaad6a46f4bc6f18034 (diff)
downloadlombok-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.java6
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