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