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
  11 /*
  12  * check-name: Preprocessor #10
  13  * check-command: sparse -E $file
  14  *
  15  * check-output-start
  16 
  17 defined
  18  * check-output-end
  19  */