aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/before
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2012-10-29 23:12:14 +0100
committerReinier Zwitserloot <reinier@zwitserloot.com>2012-10-29 23:12:14 +0100
commitb8e1f3bdeb622ba92b25f12a4eff35ea5f75908c (patch)
treed95847e42ac944cab8ed557d7d3eb917756a0261 /test/transform/resource/before
parent7bd3851f68c8aadf6fcc9cd6c37fd1b4737ff906 (diff)
downloadlombok-b8e1f3bdeb622ba92b25f12a4eff35ea5f75908c.tar.gz
lombok-b8e1f3bdeb622ba92b25f12a4eff35ea5f75908c.tar.bz2
lombok-b8e1f3bdeb622ba92b25f12a4eff35ea5f75908c.zip
added tests for lub and val (lub = finding the common supertype, for example in a ternary expression).
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();
+ }
+}