blob: a41ff8bcc19aa5cf2ee06a2797643d1c255a5816 [file] [log] [blame]
// Test case for issue #56:
// https://github.com/kelloggm/checker-framework/issues/56
import org.checkerframework.common.value.qual.MinLen;
public class EndsWith {
void testEndsWith(String arg) {
if (arg.endsWith("[]")) {
@MinLen(2) String arg2 = arg;
}
}
}