IDEA-135162 Smart Completion proposes nothing in catch statements

This commit is contained in:
peter
2015-01-13 17:11:51 +01:00
parent aa5b63d8d7
commit 9358cdd8b2
6 changed files with 56 additions and 3 deletions
@@ -6,7 +6,7 @@ class Foo {
public void run() {
try {
throw new IOException();
} catch (<caret>) {
} catch (IO<caret>) {
}
}
@@ -0,0 +1,11 @@
class A{
{
try{
smth();
}
catch(ProcessCanceledException <caret>)
}
}
class ProcessCanceledException extends Throwable {}
@@ -0,0 +1,11 @@
class A{
{
try{
smth();
}
catch(PCE<caret>)
}
}
class ProcessCanceledException extends Throwable {}