2013-02-21 10:17:58 +08:00
|
|
|
// RUN: %clang -fsyntax-only -std=c++11 %s
|
2013-04-04 10:55:24 +08:00
|
|
|
// RUN: %clang -fsyntax-only -std=c++11 -fmodules %s
|
2013-02-21 10:17:58 +08:00
|
|
|
|
|
|
|
#include <stdalign.h>
|
|
|
|
|
|
|
|
#if defined alignas
|
|
|
|
#error alignas should not be defined in C++
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined alignof
|
|
|
|
#error alignof should not be defined in C++
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static_assert(__alignas_is_defined, "");
|
|
|
|
static_assert(__alignof_is_defined, "");
|