diff options
Diffstat (limited to 'test/transform/resource/after-ecj')
-rw-r--r-- | test/transform/resource/after-ecj/ValRawType.java | 27 |
1 files changed, 27 insertions, 0 deletions
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 |