Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/stringToCharacterLiteral/after12.java
2010-06-25 12:46:40 +04:00

9 lines
143 B
Java

// "Change '"' to "\"" (to String literal)" "true"
class Quotes {
void m1(String s) {}
void test() {
m1(<caret>"\"");
}
}