From 222e2a7620e6520ffaf4fc4e69d79c18da31542e Mon Sep 17 00:00:00 2001 From: "Zancanaro; Carlo" Date: Mon, 24 Sep 2012 09:58:17 +1000 Subject: Add the clang library to the repo (with some of my changes, too). --- clang/test/SemaTemplate/instantiate-array.cpp | 28 +++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 clang/test/SemaTemplate/instantiate-array.cpp (limited to 'clang/test/SemaTemplate/instantiate-array.cpp') diff --git a/clang/test/SemaTemplate/instantiate-array.cpp b/clang/test/SemaTemplate/instantiate-array.cpp new file mode 100644 index 0000000..b8229d3 --- /dev/null +++ b/clang/test/SemaTemplate/instantiate-array.cpp @@ -0,0 +1,28 @@ +// RUN: %clang_cc1 -fsyntax-only -verify %s -std=c++11 + +#ifndef __GXX_EXPERIMENTAL_CXX0X__ +#define __CONCAT(__X, __Y) __CONCAT1(__X, __Y) +#define __CONCAT1(__X, __Y) __X ## __Y + +#define static_assert(__b, __m) \ + typedef int __CONCAT(__sa, __LINE__)[__b ? 1 : -1] +#endif + +template class IntArray { + int elems[N]; +}; + +static_assert(sizeof(IntArray<10>) == sizeof(int) * 10, "Array size mismatch"); +static_assert(sizeof(IntArray<1>) == sizeof(int) * 1, "Array size mismatch"); + +template class TenElementArray { + int elems[10]; +}; + +static_assert(sizeof(TenElementArray) == sizeof(int) * 10, "Array size mismatch"); + +template class Array { + T elems[N]; +}; + +static_assert(sizeof(Array) == sizeof(int) * 10, "Array size mismatch"); -- cgit v1.2.3