blob: 906a8476300252db3a515049671a5850af51eecc [file] [log] [blame]
// "Change '"' to "\"" (to String literal)" "true"
class Quotes {
void m1(String s) {}
void test() {
m1(<caret>"\"");
}
}