blob: 73b921f19bad3111be294397ed3ee2366f753541 [file] [log] [blame]
// "Change "\'" to '\'' (to char literal)" "true"
class Quotes {
void m1(char ch) {}
void test() {
m1(<caret>"\'");
}
}