YouCompleteMe/cpp/llvm/tools/clang/test/CXX/conv/conv.prom/p2.cpp
Strahinja Val Markovic 1f51a89d39 Adding more llvm/clang files
These were ignored by git accidentally. We want ALL OF THEM since they all came
in the llvm/clang source distribution.
2012-07-05 17:55:45 -07:00

17 lines
525 B
C++

// RUN: %clang_cc1 -fsyntax-only -verify -std=c++0x -ffreestanding %s
// RUN: %clang_cc1 -fsyntax-only -verify -std=c++0x -fshort-wchar -ffreestanding %s
#include <stdint.h>
// In theory, the promoted types vary by platform; however, in reality they
// are quite consistent across all platforms where clang runs.
extern int promoted_wchar;
extern decltype(+L'a') promoted_wchar;
extern int promoted_char16;
extern decltype(+u'a') promoted_char16;
extern unsigned promoted_char32;
extern decltype(+U'a') promoted_char32;