blob: 1b296d021490b56d4e4ebdcaed9a4c7db74ef2b3 [file] [log] [blame]
// "Surround with try/catch" "true"
public class ExTest {
public static void maybeThrow(String data) throws Ex {
throw new Ex(data);
}
{
Block<String> b = (t) -> { return ExTest.may<caret>beThrow(t);};
}
private static class Ex extends Throwable {
public Ex(String s) {
}
}
}
interface Block<T> {
public void accept(T t);
}