OSDN Git Service

2012-12-15 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / cpp0x / defaulted25.C
1 // PR c++/48930
2 // { dg-options -std=c++0x }
3 // { dg-prune-output "note" }
4
5 struct A
6 {
7   A(const A&) = default;
8 };
9
10 A a;                            // { dg-error "no match" }