mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 00:11:26 +07:00
more java tests moved to community
This commit is contained in:
+20
@@ -0,0 +1,20 @@
|
||||
// "Add Catch Clause(s)" "false"
|
||||
// should not try to add catch clauses across method boundaries
|
||||
class s {
|
||||
int f() throws Exception {
|
||||
Runnable runnable = new Runnable() {
|
||||
public void run() {
|
||||
try {
|
||||
Runnable runnable = new Runnable() {
|
||||
public void run() {
|
||||
<caret>int i = f();//
|
||||
}
|
||||
};
|
||||
} catch (Exception e) {
|
||||
}
|
||||
}
|
||||
};
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user