1 // RUN: %clang_cc1 -fsyntax-only -verify %s
2 // RUN: %clang_cc1 -std=c++11 -fsyntax-only -verify %s
3 // expected-no-diagnostics
5 // Check types of char literals
7 extern __typeof('a') a
;
9 extern __typeof('asdf') b
;
11 extern __typeof(L
'a') c
;
12 #if __cplusplus >= 201103L
14 extern __typeof(u
'a') d
;
16 extern __typeof(U
'a') e
;