mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-17 04:35:13 +07:00
testdata for IDEA-80695
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
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 {
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user