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