summaryrefslogtreecommitdiff
path: root/java/java-tests/testData/codeInsight/editorActions/stringLiteral/enterOpSignOnNextLine_after.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/java-tests/testData/codeInsight/editorActions/stringLiteral/enterOpSignOnNextLine_after.java')
-rw-r--r--java/java-tests/testData/codeInsight/editorActions/stringLiteral/enterOpSignOnNextLine_after.java6
1 files changed, 6 insertions, 0 deletions
diff --git a/java/java-tests/testData/codeInsight/editorActions/stringLiteral/enterOpSignOnNextLine_after.java b/java/java-tests/testData/codeInsight/editorActions/stringLiteral/enterOpSignOnNextLine_after.java
new file mode 100644
index 000000000000..b5576432a1e4
--- /dev/null
+++ b/java/java-tests/testData/codeInsight/editorActions/stringLiteral/enterOpSignOnNextLine_after.java
@@ -0,0 +1,6 @@
+public class Shakespeare {
+ void quote() {
+ String theQuote = "A fool thinks himself to be wise, "
+ + "<caret>but a wise man knows himself to be a fool.";
+ }
+}