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/ValRawType.java20
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