blob: 02b56df4e81405407c787ae6d551cf0201f1f5ee [file] [log] [blame]
/* concatenation of 'defi' and 'ned' should result in the same token
* we would get if we had 'defined' in the input stream.
*/
#define A
#define B defi ## ned
#if B(A)
defined
#else
undefined
#endif
/*
* check-name: Preprocessor #10
* check-command: sparse -E $file
*
* check-output-start
defined
* check-output-end
*/