Couple more tests for val

This commit is contained in:
Reinier Zwitserloot
2012-02-15 04:45:28 +01:00
parent b4a8affec2
commit 0f86101098
9 changed files with 64 additions and 0 deletions
@@ -0,0 +1,6 @@
import lombok.val;
public class ValInMultiDeclaration {
public void test() {
val x = 10, y = "";
}
}