blob: fd06e834a40f7f9d3f63b59425aea56ad0181321 [file] [log] [blame]
// Test case for issue #279: https://github.com/typetools/checker-framework/issues/279
public class GenericEnum<T extends String> {
void test() {
T.format("");
}
}