1static int c = 'a; 2 3static char s[] = "abc; 4static char t[] = "xyz"; 5 6extern void foo(void); 7 8/* 9 * check-name: missing-delim 10 * check-command: sparse -E $file 11 * check-output-ignore 12 * 13 * check-error-start 14preprocessor/missing-delim.c:2:0: warning: missing terminating ' character 15preprocessor/missing-delim.c:4:0: warning: missing terminating " character 16 * check-error-end 17 */ 18