aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/before
diff options
context:
space:
mode:
Diffstat (limited to 'test/transform/resource/before')
-rw-r--r--test/transform/resource/before/ValLub.java23
1 files changed, 23 insertions, 0 deletions
diff --git a/test/transform/resource/before/ValLub.java b/test/transform/resource/before/ValLub.java
new file mode 100644
index 00000000..c1b41c26
--- /dev/null
+++ b/test/transform/resource/before/ValLub.java
@@ -0,0 +1,23 @@
+class ValLub {
+ public void easyLub() {
+ java.util.Map<String, Number> m = java.util.Collections.emptyMap();
+
+ lombok.val foo = (System.currentTimeMillis() > 0) ? m : java.util.Collections.<String, Number>emptyMap();
+ }
+
+ public void sillyLubWithUnboxingThatProducesErrorThatVarIsPrimitive() {
+ Integer i = 20;
+ Double d = 20.0;
+
+ lombok.val thisShouldBePrimitiveDouble = (System.currentTimeMillis() > 0) ? i : d;
+ }
+
+ public void hardLub() {
+ java.util.List<String> list = new java.util.ArrayList<String>();
+ java.util.Set<String> set = new java.util.HashSet<String>();
+
+ lombok.val thisShouldBeCollection = (System.currentTimeMillis() > 0) ? list : set;
+ thisShouldBeCollection.add("");
+ String foo = thisShouldBeCollection.iterator().next();
+ }
+}