blob: 21b643ce19c881a6e8c2bc005404969cf6e4c0d9 [file] [log] [blame]
#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
*/