You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
404 B
18 lines
404 B
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
|
// RUN: %clang_cc1 -std=c++11 -fsyntax-only -verify %s
|
|
// expected-no-diagnostics
|
|
|
|
// Check types of char literals
|
|
extern char a;
|
|
extern __typeof('a') a;
|
|
extern int b;
|
|
extern __typeof('asdf') b;
|
|
extern wchar_t c;
|
|
extern __typeof(L'a') c;
|
|
#if __cplusplus >= 201103L
|
|
extern char16_t d;
|
|
extern __typeof(u'a') d;
|
|
extern char32_t e;
|
|
extern __typeof(U'a') e;
|
|
#endif
|