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