1#define A(x) L##x
2A('a')
3A("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
11L'a'
12L"bc"
13 * check-output-end
14 */
15
16