blob: f6990f408a57f023c1dba6828d215cd63556a331 [file] [log] [blame]
// Test for Issue 258
// https://github.com/typetools/checker-framework/issues/258
public class GenericsBounds2 {
<I extends Object, C extends I> void method(C arg) {
arg.toString();
}
}