1*1f5207b7SJohn Levon #define A(x) L##x
2*1f5207b7SJohn Levon A('a')
3*1f5207b7SJohn Levon A("bc")
4*1f5207b7SJohn Levon /*
5*1f5207b7SJohn Levon  * check-name: wide char token-pasting
6*1f5207b7SJohn Levon  * check-description: Used to cause infinite recursion.
7*1f5207b7SJohn Levon  * check-command: sparse -E $file
8*1f5207b7SJohn Levon  *
9*1f5207b7SJohn Levon  * check-output-start
10*1f5207b7SJohn Levon 
11*1f5207b7SJohn Levon L'a'
12*1f5207b7SJohn Levon L"bc"
13*1f5207b7SJohn Levon  * check-output-end
14*1f5207b7SJohn Levon  */
15*1f5207b7SJohn Levon 
16