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/transform/resource/before | |
| 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/transform/resource/before')
| -rw-r--r-- | test/transform/resource/before/ValRawType.java | 20 |
1 files changed, 20 insertions, 0 deletions
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 |
