(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp0x/
anon-union2.C
// PR c++/83956
// { dg-do compile { target c++11 } }

struct a {
  ~a() = delete;
};
struct b {
  ~b() {}
  union {
    a c;
  };
};