aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/validation/preprocessor/wide.c
blob: 21b643ce19c881a6e8c2bc005404969cf6e4c0d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#define A(x) L##x
A('a')
A("bc")
/*
 * check-name: wide char token-pasting
 * check-description: Used to cause infinite recursion.
 * check-command: sparse -E $file
 *
 * check-output-start

L'a'
L"bc"
 * check-output-end
 */