aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/g++.dg/cpp0x/defaulted25.C
blob: 2a38fedb24875ddb7436881c578d48a2dc36bc7e (plain)
1
2
3
4
5
6
7
8
9
10
// PR c++/48930
// { dg-options -std=c++0x }
// { dg-prune-output "note" }

struct A
{
  A(const A&) = default;
};

A a;				// { dg-error "no match" }