1 // RUN: %clang_cc1 -fsyntax-only -verify %s 2 3 // Check types of char literals 4 extern char a; 5 extern __typeof('a') a; 6 extern int b; 7 extern __typeof('asdf') b; 8 extern wchar_t c; 9 extern __typeof(L'a') c; 10