summaryrefslogtreecommitdiff
path: root/test/files/run/t9268/Java.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t9268/Java.java')
-rw-r--r--test/files/run/t9268/Java.java12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/files/run/t9268/Java.java b/test/files/run/t9268/Java.java
new file mode 100644
index 0000000000..c9a0bec3ff
--- /dev/null
+++ b/test/files/run/t9268/Java.java
@@ -0,0 +1,12 @@
+public class Java {
+}
+
+class Partial {
+ public <E extends java.lang.Exception> long waitFor(long l, Waiter.Predicate<E> pred) throws E {
+ return 0L;
+ }
+}
+
+class Waiter {
+ interface Predicate<E> {}
+}