diff options
author | peichhorn <peichhor@web.de> | 2012-04-19 02:41:31 +0200 |
---|---|---|
committer | peichhorn <peichhor@web.de> | 2012-04-19 02:41:31 +0200 |
commit | 3f408782de736a676ee19757894eb89c1f4ebf3b (patch) | |
tree | d7d64f1e91a9c7e624edae880c7a841be5b91ce2 /test | |
parent | 48e73a7180ac459d2949e66f2cacc46e08466fce (diff) | |
download | lombok-3f408782de736a676ee19757894eb89c1f4ebf3b.tar.gz lombok-3f408782de736a676ee19757894eb89c1f4ebf3b.tar.bz2 lombok-3f408782de736a676ee19757894eb89c1f4ebf3b.zip |
fixed: @val didn't work with rawtypes in enhanced for loops
Diffstat (limited to 'test')
4 files changed, 68 insertions, 0 deletions
diff --git a/test/transform/resource/after-delombok/ValRawType.java b/test/transform/resource/after-delombok/ValRawType.java new file mode 100644 index 00000000..dc297046 --- /dev/null +++ b/test/transform/resource/after-delombok/ValRawType.java @@ -0,0 +1,20 @@ +import java.util.List; + +public class ValRawType { + + public void test() { + Element propElement = new Element(); + for (final java.lang.Object attribute : propElement.attributes()) { + final ValRawType.Attribute attr = (Attribute)attribute; + } + } + + static class Element { + public List attributes() { + return null; + } + } + + static class Attribute { + } +}
\ No newline at end of file diff --git a/test/transform/resource/after-ecj/ValRawType.java b/test/transform/resource/after-ecj/ValRawType.java new file mode 100644 index 00000000..a8ab6ddc --- /dev/null +++ b/test/transform/resource/after-ecj/ValRawType.java @@ -0,0 +1,27 @@ +import java.util.List; +import lombok.val; +public class ValRawType { + static class Element { + Element() { + super(); + } + public List attributes() { + return null; + } + } + static class Attribute { + Attribute() { + super(); + } + } + public ValRawType() { + super(); + } + public void test() { + Element propElement = new Element(); + for (final @val java.lang.Object attribute : propElement.attributes()) + { + final @val ValRawType.Attribute attr = (Attribute) attribute; + } + } +}
\ No newline at end of file diff --git a/test/transform/resource/before/ValRawType.java b/test/transform/resource/before/ValRawType.java new file mode 100644 index 00000000..3ef8527e --- /dev/null +++ b/test/transform/resource/before/ValRawType.java @@ -0,0 +1,20 @@ +import java.util.List; +import lombok.val; + +public class ValRawType { + public void test() { + Element propElement = new Element(); + for (val attribute : propElement.attributes()) { + val attr = (Attribute) attribute; + } + } + + static class Element { + public List attributes() { + return null; + } + } + + static class Attribute { + } +}
\ No newline at end of file diff --git a/test/transform/resource/messages-ecj/ValRawType.java.messages b/test/transform/resource/messages-ecj/ValRawType.java.messages new file mode 100644 index 00000000..b2b8d753 --- /dev/null +++ b/test/transform/resource/messages-ecj/ValRawType.java.messages @@ -0,0 +1 @@ +13 warning List is a raw type. References to generic type List<E> should be parameterized
\ No newline at end of file |