blob: 6771207a6c2159ff4c48661e2773f4368ae1e3d8 [file] [log] [blame]
import org.checkerframework.common.value.qual.*;
public class ExceptionTest {
public void foo() {
int indexTooBig = 5;
String s = "hello";
// :: warning: (method.evaluation.exception)
char c = s.charAt(indexTooBig);
}
}