summaryrefslogtreecommitdiff
path: root/test/files/run/t9268/Java.java
blob: c9a0bec3ff045d3147b966cd3c6a96afcbf30b4c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
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> {}
}