math: improve how get_absolute_min/max() work
[smatch.git] / validation / preprocessor / preprocessor10.c
blob02b56df4e81405407c787ae6d551cf0201f1f5ee
1 /* concatenation of 'defi' and 'ned' should result in the same token
2 * we would get if we had 'defined' in the input stream.
3 */
4 #define A
5 #define B defi ## ned
6 #if B(A)
7 defined
8 #else
9 undefined
10 #endif
12 * check-name: Preprocessor #10
13 * check-command: sparse -E $file
15 * check-output-start
17 defined
18 * check-output-end