IDEA-119740 Ctrl+Shift+Space does not complete exception type after "final"

This commit is contained in:
peter
2014-01-23 10:45:22 +01:00
parent b2dc0d2beb
commit 76956c0ebe
4 changed files with 24 additions and 5 deletions
@@ -0,0 +1,9 @@
class A{
{
try{
throw new Exception();
}
catch(final Exception <caret>)
}
}
@@ -0,0 +1,9 @@
class A{
{
try{
throw new Exception();
}
catch(final <caret>)
}
}
@@ -317,7 +317,8 @@ public class SmartTypeCompletionTest extends LightFixtureCompletionTestCase {
checkResultByFile(path + "/after2.java");
}
public void testInsideCatch() throws Exception { doTest(); }
public void testInsideCatch() { doTest(); }
public void testInsideCatchFinal() { doTest(); }
public void testGenerics6() throws Exception {
String path = "/generics";