(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
abi/
nullptr-align2.C
// { dg-do compile { target c++11 } }
// { dg-options "-fabi-version=0 -Wabi=8" }

struct A
{
  decltype(nullptr) n;
  decltype(nullptr) n2;
};

struct B
{
  void *p;
  decltype(nullptr) n;
};

struct C
{
  char c;
  decltype(nullptr) n;		// { dg-warning "alignment" }
};