blob: d064ecd42288c8e497fc47201ad54af292bc5973 [file] [log] [blame]
// Test case for issue #809:
// https://github.com/typetools/checker-framework/issues/809
public class Issue809<K extends Enum<K>> {
K[] array;
int index = 0;
String m() {
return array[index] + "=";
}
}