aboutsummaryrefslogtreecommitdiff
path: root/test/transform/knownBroken/before/I1298BuilderWithGenerics.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/transform/knownBroken/before/I1298BuilderWithGenerics.java')
-rw-r--r--test/transform/knownBroken/before/I1298BuilderWithGenerics.java15
1 files changed, 0 insertions, 15 deletions
diff --git a/test/transform/knownBroken/before/I1298BuilderWithGenerics.java b/test/transform/knownBroken/before/I1298BuilderWithGenerics.java
deleted file mode 100644
index af154d42..00000000
--- a/test/transform/knownBroken/before/I1298BuilderWithGenerics.java
+++ /dev/null
@@ -1,15 +0,0 @@
-import java.util.Set;
-import lombok.Builder;
-import lombok.Value;
-
-public class I1298BuilderWithGenerics {
- interface Inter<T, U extends Inter<T, U>> {}
-
- @Builder @Value public static class Test<
- Foo,
- Bar extends Set<Foo>,
- Quz extends Inter<Bar, Quz>> {
- Foo foo;
- Bar bar;
- }
-}