blob: 289f1ffc005dbeb8fc1bf7173e0f885b068847be [file] [log] [blame]
// Test case for Issue 1696:
// https://github.com/typetools/checker-framework/issues/1696
public class Issue1696 {
interface I<T extends I<T, S>, S> {}
void f(I<?, ?> x) {}
}