extra: small fix for when the database is disabled but we have inline info
[smatch.git] / validation / preprocessor / wide.c
blob21b643ce19c881a6e8c2bc005404969cf6e4c0d9
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
9 * check-output-start
11 L'a'
12 L"bc"
13 * check-output-end