summaryrefslogtreecommitdiff
path: root/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/surroundWithTry/beforeArrayInitializer.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/surroundWithTry/beforeArrayInitializer.java')
-rw-r--r--java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/surroundWithTry/beforeArrayInitializer.java17
1 files changed, 17 insertions, 0 deletions
diff --git a/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/surroundWithTry/beforeArrayInitializer.java b/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/surroundWithTry/beforeArrayInitializer.java
new file mode 100644
index 000000000000..60e76c1781a3
--- /dev/null
+++ b/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/surroundWithTry/beforeArrayInitializer.java
@@ -0,0 +1,17 @@
+// "Surround with try/catch" "true"
+public class ExTest {
+ public static String maybeThrow(String data) throws Ex {
+ throw new Ex(data);
+ }
+
+ {
+ String[] a = {mayb<caret>eThrow("")};
+ System.out.println(a);
+ }
+
+
+ private static class Ex extends Exception {
+ public Ex(String s) {
+ }
+ }
+} \ No newline at end of file