blob: 400acac7c3df4bd9b01ce5cbfbbf3f3fb7dd0256 [file] [log] [blame]
// Test case for Issue 1431
// https://github.com/typetools/checker-framework/issues/1431
public class Issue1431 {
static class Outer<V> {
class Inner<T extends V> {}
}
Outer<Object>.Inner<int[]> ic;
Issue1431(Outer<Object>.Inner<int[]> ic) {
this.ic = ic;
}
}