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

template<class>
struct S
{
  static_assert(((S*)0)->~S(), "");  // { dg-error "incomplete type" }
};

S<int> b;