view gcc/testsuite/g++.dg/cpp0x/alignas5.C @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
line wrap: on
line source

// PR c++/58109  - alignas() fails to compile with constant expression
// { dg-do compile }

template <typename T>
struct Base {
  static const int Align = sizeof (T);
};

// Never instantiated.
template <typename T>
struct Derived: Base<T>
{
#if __cplusplus >= 201102L
  // This is the meat of the (simplified) regression test for c++/58109.
  using B = Base<T>;
  using B::Align;

  alignas (Align) char a [1];
  alignas (Align) T b [1];
#else
  // Fake the test for C++ 98.
#  define Align Base<T>::Align
#endif

  char __attribute__ ((aligned (Align))) c [1];
  T __attribute__ ((aligned (Align))) d [1];
};

// Instantiated to verify that the code is accepted even when instantiated.
template <typename T>
struct InstDerived: Base<T>
{
#if __cplusplus >= 201102L
  using B = Base<T>;
  using B::Align;

  alignas (Align) char a [1];
  alignas (Align) T b [1];
#endif

  char __attribute__ ((aligned (Align))) c [1];
  T __attribute__ ((aligned (Align))) d [1];
};

InstDerived<int> dx;