blob: 00aa40d853d13bcc061e52a7ff8337af1a14c6cc [file] [log] [blame]
// Test case for Issue #2048:
// https://github.com/typetools/checker-framework/issues/2048
//
// There are two versions:
// framework/tests/all-systems
// checker/tests/nullness
public class Issue2048 {
interface Foo {}
interface Fooer<R extends Foo> {}
class Use<T> {
@SuppressWarnings("all") // Check for crashes.
void foo(Fooer<? extends T> fooer) {}
}
}