* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / pr61019.C
blobe0d87f42e8e10712983d3a651817effde7d354bc
1 // PR c++/61019
2 // { dg-do compile { target c++11 } }
4 template<class>
5 struct S
7   static_assert(((S*)0)->~S(), "");  // { dg-error "incomplete type" }
8 };
10 S<int> b;