aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs161/pr237419/problem/GenericService.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bugs161/pr237419/problem/GenericService.java')
-rw-r--r--tests/bugs161/pr237419/problem/GenericService.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/bugs161/pr237419/problem/GenericService.java b/tests/bugs161/pr237419/problem/GenericService.java
new file mode 100644
index 000000000..2a216e46e
--- /dev/null
+++ b/tests/bugs161/pr237419/problem/GenericService.java
@@ -0,0 +1,5 @@
+package problem;
+
+public abstract class GenericService<T extends Generic<?>> {
+ protected abstract T update(T current);
+}