/* ERRORS */ char^ a = " ; /* ERRORS */ char^ b = "\" ; /* ERRORS */ char^ c = "x ; /* ERRORS */ char^ d = "\q" ; /* ERRORS */ char^ e = """ ; /* ERRORS */ char^ f = " xxx yyy" ; /* ERRORS comments in strings must be escaped */ char^ g = "/*"; char^ h = "*/"; // Comment sequences in other places are tested in comments_ambiguous.bad /* ERRORS invalid escape codes */ char^ i = "\*"; char^ j = "\/";