aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/validation/preprocessor/early-escape.c
blob: 5ca5e8f42b580c1defd5d0bd4ce089915acc9669 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#if 0
"\l"
#endif

/*
 * check-description:
 *	Following the C standard, escape conversion must be
 *	done in phase 5, just after preprocessing and just
 *	before string concatenation. So we're not supposed
 *	to receive a diagnostic for an unknown escape char
 *	for a token which is excluded by the preprocessor.
 * check-name: early-escape
 * check-command: sparse -E $file
 *
 * check-output-start


 * check-output-end
 *
 * check-error-start
 * check-error-end
 */