1 // PR c++/61019
2 // { dg-do compile { target c++11 } }
3 
4 template<class>
5 struct S
6 {
7   static_assert(((S*)0)->~S(), "");  // { dg-error "incomplete type" }
8 };
9 
10 S<int> b;
11