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
631 B
18 lines
631 B
4 months ago
|
// RUN: %clang_cc1 -fsyntax-only -verify -std=c++0x -triple x86_64-pc-linux-gnu -ffreestanding %s
|
||
|
// RUN: %clang_cc1 -fsyntax-only -verify -std=c++0x -triple x86_64-pc-linux-gnu -ffreestanding -fwchar-type=short -fno-signed-wchar %s
|
||
|
// expected-no-diagnostics
|
||
|
|
||
|
#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;
|