summaryrefslogtreecommitdiff
path: root/java/java-tests/testData/codeInsight/completeStatement
diff options
context:
space:
mode:
Diffstat (limited to 'java/java-tests/testData/codeInsight/completeStatement')
-rw-r--r--java/java-tests/testData/codeInsight/completeStatement/AlreadyCompleteCatch.java12
-rw-r--r--java/java-tests/testData/codeInsight/completeStatement/AlreadyCompleteCatch_after.java12
2 files changed, 24 insertions, 0 deletions
diff --git a/java/java-tests/testData/codeInsight/completeStatement/AlreadyCompleteCatch.java b/java/java-tests/testData/codeInsight/completeStatement/AlreadyCompleteCatch.java
new file mode 100644
index 000000000000..d8ea6191cef8
--- /dev/null
+++ b/java/java-tests/testData/codeInsight/completeStatement/AlreadyCompleteCatch.java
@@ -0,0 +1,12 @@
+
+class Foo {
+ {
+ try
+ {
+
+ } catch (Ex<caret>ception e)
+ {
+
+ }
+ }
+} \ No newline at end of file
diff --git a/java/java-tests/testData/codeInsight/completeStatement/AlreadyCompleteCatch_after.java b/java/java-tests/testData/codeInsight/completeStatement/AlreadyCompleteCatch_after.java
new file mode 100644
index 000000000000..f4874b45962e
--- /dev/null
+++ b/java/java-tests/testData/codeInsight/completeStatement/AlreadyCompleteCatch_after.java
@@ -0,0 +1,12 @@
+
+class Foo {
+ {
+ try
+ {
+
+ } catch (Exception e)
+ {
+ <caret>
+ }
+ }
+} \ No newline at end of file