xref: /illumos-gate/usr/src/tools/smatch/src/validation/preprocessor/wide.c (revision 856f710c9dc323b39da5935194d7928ffb99b67f)
1 #define A(x) L##x
2 A('a')
3 A("bc")
4 /*
5  * check-name: wide char token-pasting
6  * check-description: Used to cause infinite recursion.
7  * check-command: sparse -E $file
8  *
9  * check-output-start
10 
11 L'a'
12 L"bc"
13  * check-output-end
14  */
15 
16