blob: c161739c4acf393041b3594516028aa5bf93333b [file] [log] [blame]
public class Try {
public int test() {
int i = another();
return i;
}
public int another<caret>() {
try {
return Integer.parseInt("1");
}
catch (NumberFormatException ex) {
throw ex;
}
}
}