blob: 0c62c03bda9b0b05915e0f97ba8749f3ffcf8d33 [file] [log] [blame]
// Build don't link:
// GROUPS passed parsing
class Try {
private:
char s;
public:
// an escaped double-quote should not call consume_string inside
// reinit_parse_for_block
void mf() { s='\"'; }
};
int main()
{
Try x;
x.mf();
}