blob: 2bef3d88687d615a6de85d438e19820134e204b5 [file] [log] [blame]
import java.util.*;
class Test {
public void foo() {
<selection>List trades;
try {
trades = getTrades();
}
catch (RemoteException e) {
}
</selection>
//probably not assigned !!!
if (trades.isEmpty()) {
}
}
static class RemoteException extends Exception {
}
}