OSDN Git Service

/cp
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / cpp0x / defaulted24.C
1 // PR c++/48280
2 // { dg-options -std=c++0x }
3
4 struct S {
5   template < typename > S (const S &) = default; // { dg-error "" }
6 };