aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/validation/preprocessor/missing-delim.c
blob: 3763520bcb1d279e73b133d349f1ac8659c55443 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
static int  c = 'a;

static char s[] = "abc;
static char t[] = "xyz";

extern void foo(void);

/*
 * check-name: missing-delim
 * check-command: sparse -E $file
 * check-output-ignore
 * check-known-to-fail
 *
 * check-error-start
preprocessor/missing-delim.c:2:0: warning: missing delimitator '
preprocessor/missing-delim.c:4:0: warning: missing delimitator "
 * check-error-end
 */