1 // RUN: %clang_cc1 -fsyntax-only -verify %s -std=c++11
2 // expected-no-diagnostics
4 #ifndef __GXX_EXPERIMENTAL_CXX0X__
5 #define __CONCAT(__X, __Y) __CONCAT1(__X, __Y)
6 #define __CONCAT1(__X, __Y) __X ## __Y
8 #define static_assert(__b, __m) \
9 typedef int __CONCAT(__sa, __LINE__)[__b ? 1 : -1]
12 template <int N
> class IntArray
{
16 static_assert(sizeof(IntArray
<10>) == sizeof(int) * 10, "Array size mismatch");
17 static_assert(sizeof(IntArray
<1>) == sizeof(int) * 1, "Array size mismatch");
19 template <typename T
> class TenElementArray
{
23 static_assert(sizeof(TenElementArray
<int>) == sizeof(int) * 10, "Array size mismatch");
25 template<typename T
, int N
> class Array
{
29 static_assert(sizeof(Array
<int, 10>) == sizeof(int) * 10, "Array size mismatch");