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/SuperBuilderNestedGenericTypes.java12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/transform/resource/before/SuperBuilderNestedGenericTypes.java b/test/transform/resource/before/SuperBuilderNestedGenericTypes.java
new file mode 100644
index 00000000..c463357e
--- /dev/null
+++ b/test/transform/resource/before/SuperBuilderNestedGenericTypes.java
@@ -0,0 +1,12 @@
+public class SuperBuilderNestedGenericTypes {
+ @lombok.experimental.SuperBuilder
+ public static abstract class Generic<T extends Generic<?>> {
+ }
+
+ @lombok.experimental.SuperBuilder
+ public static abstract class NestedGeneric<T extends OtherGeneric<?>> extends Generic<NestedGeneric<? extends OtherGeneric<?>>> {
+ }
+
+ public interface OtherGeneric<T> {
+ }
+}